Vincent Esche

Results 209 comments of Vincent Esche

@ms-ati We have an experimental macro-based implementation in the [experiments repo](https://github.com/rust-rspec/experiments/blob/master/macro/src/main.rs#L390-L416).

We already have 3 × 3 functions for creating suites/contexts/examples. Any further addition of focussing variants (9 more functions each!) would be a bad idea, imho. Instead we should [consider...

Do we want a public of 27+ ((`suite` + `describe` + `given`) * 3 * (normal + focus + ignore) = 27) methods mapping onto 9 actual semantic distinct functionalities?...

https://github.com/mitsuhiko/indicatif ![indicatif](https://github.com/mitsuhiko/indicatif/raw/master/screenshots/multi-progress.gif?raw=true) As soon as we have parallel execution of tests (hint: sooner rather than later _cough_) we cannot provide pure append-only logging of parallel tests/contexts anyway. We will instead...

Hi Afshin, sorry for the lack of a response. The 2nd & 3rd link from my initial message should give an idea of how an integration could work. I'm currently...

Thanks Marius! Unfortunately when running `$ pod spec lint` I get this: ``` -> Rainbows (1.0.0) - ERROR | [iOS] xcodebuild: Returned an unsuccessful exit code. You can use `--verbose`...

Related issues on CocoaPods: [#3995](https://github.com/CocoaPods/CocoaPods/issues/3995), [#5356](https://github.com/CocoaPods/CocoaPods/issues/5356), [#5071](https://github.com/CocoaPods/CocoaPods/issues/5071)

@obsgolem this one probably: [Sort Hover Event (#71848)](https://github.com/microsoft/vscode/issues/71848) Possible fix as per this comment by [jrieken](https://github.com/jrieken): > Providers get sorted by their [score](https://github.com/Microsoft/vscode/blob/c052919d985b47569e84ae17cf3dc97104440054/src/vs/vscode.d.ts#L7831) and in case of equal scores by...

> "The hashValue of this array isn't guaranteed to be unique, right? There could be 2 large data arrays with different pixel data and the same hash, right? Is the...

### **Issue:** Import renames à la `use Foo as Bar;` are not resolved properly. A minimalistic crate like this … ```rust // lib.rs pub struct Foo { pub field: bool...