-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 10 pull requests #61379
Rollup of 10 pull requests #61379
Commits on May 17, 2019
-
error: remove StringError from Debug output
Seeing `StringError("something something")` in debug output can cause someone to think there was an error dealing with `String`s, not that the error type is just a string. So, remove that noise.
Configuration menu - View commit details
-
Copy full SHA for d2d89b1 - Browse repository at this point
Copy the full SHA d2d89b1View commit details
Commits on May 29, 2019
-
Speed up Azure CI installing Windows dependencies
There is known issue where PowerShell is unreasonably slow downloading files due to an issue with rendering the progress bar, see: PowerShell/PowerShell#2138 That issue is fixed in PowerShell Core (available in Azure Pipelines as pwsh.exe) but it can also be worked around by setting: $ProgressPreference = 'SilentlyContinue'
Configuration menu - View commit details
-
Copy full SHA for 642e8d4 - Browse repository at this point
Copy the full SHA 642e8d4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 07864a6 - Browse repository at this point
Copy the full SHA 07864a6View commit details -
no longer assume that there is a default tag: give the machine the ch…
…ance to tag all allocations
Configuration menu - View commit details
-
Copy full SHA for a218be9 - Browse repository at this point
Copy the full SHA a218be9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 19c4cfd - Browse repository at this point
Copy the full SHA 19c4cfdView commit details -
Configuration menu - View commit details
-
Copy full SHA for c604350 - Browse repository at this point
Copy the full SHA c604350View commit details -
Configuration menu - View commit details
-
Copy full SHA for 66cc1b7 - Browse repository at this point
Copy the full SHA 66cc1b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for b073599 - Browse repository at this point
Copy the full SHA b073599View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a7ce02 - Browse repository at this point
Copy the full SHA 1a7ce02View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a8f6db - Browse repository at this point
Copy the full SHA 5a8f6dbView commit details
Commits on May 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for bf0da6c - Browse repository at this point
Copy the full SHA bf0da6cView commit details -
Configuration menu - View commit details
-
Copy full SHA for e18885e - Browse repository at this point
Copy the full SHA e18885eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ffab36 - Browse repository at this point
Copy the full SHA 3ffab36View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f929be - Browse repository at this point
Copy the full SHA 5f929beView commit details -
Configuration menu - View commit details
-
Copy full SHA for dacf19c - Browse repository at this point
Copy the full SHA dacf19cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 436c9be - Browse repository at this point
Copy the full SHA 436c9beView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c35c69 - Browse repository at this point
Copy the full SHA 0c35c69View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c534c3 - Browse repository at this point
Copy the full SHA 6c534c3View commit details -
Add regression test for const generics ICE
Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 0fdd419 - Browse repository at this point
Copy the full SHA 0fdd419View commit details -
Configuration menu - View commit details
-
Copy full SHA for 66aa18b - Browse repository at this point
Copy the full SHA 66aa18bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c5eb8e - Browse repository at this point
Copy the full SHA 4c5eb8eView commit details -
Rollup merge of rust-lang#60897 - seanmonstar:patch-4, r=sfackler
error: remove StringError from Debug output Seeing `StringError("something something")` in debug output can cause someone to think there was an error dealing with `String`s, not that the error type is just a string. So, remove that noise. For example: ``` io error: Custom { kind: InvalidData, error: StringError("corrupt data") } ``` With this change: ``` io error: Custom { kind: InvalidData, error: "corrupt data" } ```
Configuration menu - View commit details
-
Copy full SHA for f6da6b0 - Browse repository at this point
Copy the full SHA f6da6b0View commit details -
Rollup merge of rust-lang#61278 - RalfJung:miri-tag-allocations, r=ol…
…i-obk Miri: give machine the chance to tag all allocations r? @oli-obk The Miri side of this is at rust-lang#61278.
Configuration menu - View commit details
-
Copy full SHA for 8996ebb - Browse repository at this point
Copy the full SHA 8996ebbView commit details -
Rollup merge of rust-lang#61304 - lzybkr:iwr_progress, r=alexcrichton
Speed up Azure CI installing Windows dependencies There is known issue where PowerShell is unreasonably slow downloading files due to an issue with rendering the progress bar, see this [issue](PowerShell/PowerShell#2138) That issue is fixed in PowerShell Core (available in Azure Pipelines as pwsh.exe) but it can also be worked around by setting: $ProgressPreference = 'SilentlyContinue' I measured downloading LLVM and it took about 220s before, 5s after, so the improvement is significant.
Configuration menu - View commit details
-
Copy full SHA for cc03f5d - Browse repository at this point
Copy the full SHA cc03f5dView commit details -
Rollup merge of rust-lang#61342 - memoryruins:ellipsis_inclusive_rang…
…e_patterns, r=Centril Set ellipsis_inclusive_range_patterns lint to warn Continuing rust-lang#54910, the `ellipsis_inclusive_range_patterns` lint is set to warn. r? @Centril
Configuration menu - View commit details
-
Copy full SHA for 30b3139 - Browse repository at this point
Copy the full SHA 30b3139View commit details -
Rollup merge of rust-lang#61344 - varkor:const-failed-to-life-ice, r=…
…Centril Add regression test for const generics ICE Closes rust-lang#60879.
Configuration menu - View commit details
-
Copy full SHA for 4643a45 - Browse repository at this point
Copy the full SHA 4643a45View commit details -
Rollup merge of rust-lang#61359 - GuillaumeGomez:fix-deref-doc-links,…
… r=Manishearth Fix links in Deref documentation Fixes rust-lang#61358. In commonmark, the "link alias" has to be right after the link. Screenshot: <img width="970" alt="Screenshot 2019-05-30 at 19 01 58" src="https://user-images.githubusercontent.com/3050060/58650155-3b594e00-830e-11e9-956c-4dadefa40ff0.png"> r? @Manishearth
Configuration menu - View commit details
-
Copy full SHA for 457ab24 - Browse repository at this point
Copy the full SHA 457ab24View commit details -
Rollup merge of rust-lang#61363 - lzutao:stabilize-iter_nth_back, r=C…
…entril Stabilize iter_nth_back feature FCP done in rust-lang#56995 (comment) Closes rust-lang#56995 r? @Centril
Configuration menu - View commit details
-
Copy full SHA for 27cb16a - Browse repository at this point
Copy the full SHA 27cb16aView commit details -
Rollup merge of rust-lang#61369 - Vallentin:patch-1, r=varkor
Fixed lifetime misspelling
Configuration menu - View commit details
-
Copy full SHA for 79b6cff - Browse repository at this point
Copy the full SHA 79b6cffView commit details -
Rollup merge of rust-lang#61372 - mati865:books, r=Centril,GuillaumeG…
…omez Migrate some books to mdbook version 0.2 There are 3 books still using old version but they need more effort so I hope to do them in subsequent PR if I find the time.
Configuration menu - View commit details
-
Copy full SHA for e35305c - Browse repository at this point
Copy the full SHA e35305cView commit details -
Rollup merge of rust-lang#61374 - VirrageS:master, r=Centril
Explicitly suggest 'type_ascription' feature Closes: rust-lang#61325 r? @estebank
Configuration menu - View commit details
-
Copy full SHA for 4254c25 - Browse repository at this point
Copy the full SHA 4254c25View commit details