-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 8 pull requests #63194
Rollup of 8 pull requests #63194
Commits on Jul 13, 2019
-
simplify std::io::Write::write rustdoc
The std::io::Write::write method currensly suggests consumers guaranteed that `0 <= n <= buf.len()`, for `Ok(n)`, however `n` is of type `usize` causing the compiler to emit a warning: ``` warning: comparison is useless due to type limits --> lib.rs:6:18 | 6 | Ok(n) => 0 <= n && n <= output.len(), | ^^^^^^ | = note: #[warn(unused_comparisons)] on by default ``` This PR removes the suggestion to check `0 <= n` since it is moot. r? @steveklabnik
Configuration menu - View commit details
-
Copy full SHA for e8e13f0 - Browse repository at this point
Copy the full SHA e8e13f0View commit details
Commits on Jul 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 08a8de8 - Browse repository at this point
Copy the full SHA 08a8de8View commit details
Commits on Jul 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for f3a3290 - Browse repository at this point
Copy the full SHA f3a3290View commit details
Commits on Jul 31, 2019
-
Configuration menu - View commit details
-
Copy full SHA for bca1c3c - Browse repository at this point
Copy the full SHA bca1c3cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3f461f5 - Browse repository at this point
Copy the full SHA 3f461f5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6551285 - Browse repository at this point
Copy the full SHA 6551285View commit details
Commits on Aug 1, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d033e8d - Browse repository at this point
Copy the full SHA d033e8dView commit details -
issue-2214.rs: lgamma is lgamma on vxWorks
ignore process-envs.rs and process-remove-from-env.rs as there is no 'env' on vxWorks
Configuration menu - View commit details
-
Copy full SHA for 8d93778 - Browse repository at this point
Copy the full SHA 8d93778View commit details -
Configuration menu - View commit details
-
Copy full SHA for b091356 - Browse repository at this point
Copy the full SHA b091356View commit details -
ci: forward the TOOLSTATE_PUBLISH environment variable inside docker
A recent commit modified toolstate to only push updated data when the TOOLSTATE_PUBLISH environment variable is present. This worked fine on Windows but failed on Linux, since Linux jobs run inside Docker containers and the variable wasn't forwarded inside it. This changes the Docker startup code to set the TOOLSTATE_PUBLISH enviornment variable inside the container if it's present outside.
Configuration menu - View commit details
-
Copy full SHA for 8f8b3f2 - Browse repository at this point
Copy the full SHA 8f8b3f2View commit details -
Rollup merge of rust-lang#62644 - arnottcr:std_io-doc, r=steveklabnik
simplify std::io::Write::write rustdoc The std::io::Write::write method currensly suggests consumers guaranteed that `0 <= n <= buf.len()`, for `Ok(n)`, however `n` is of type `usize` causing the compiler to emit a warning: ``` warning: comparison is useless due to type limits --> lib.rs:6:18 | 6 | Ok(n) => 0 <= n && n <= output.len(), | ^^^^^^ | = note: #[warn(unused_comparisons)] on by default ``` This PR removes the suggestion to check `0 <= n` since it is moot. r? @steveklabnik
Configuration menu - View commit details
-
Copy full SHA for 9ff5275 - Browse repository at this point
Copy the full SHA 9ff5275View commit details -
Rollup merge of rust-lang#62971 - GuillaumeGomez:keyword-sidebar, r=n…
…obody Add keywords item into the sidebar Fixes rust-lang#62939. cc @pravic screenshot of the result: ![Screenshot from 2019-07-25 14-29-48](https://user-images.githubusercontent.com/3050060/61874545-f9512080-aee8-11e9-8e8b-aa50216aec94.png) r? @QuietMisdreavus
Configuration menu - View commit details
-
Copy full SHA for e2934ba - Browse repository at this point
Copy the full SHA e2934baView commit details -
Rollup merge of rust-lang#63122 - Centril:fix-63115, r=petrochenkov
Account for `maybe_whole_expr` in range patterns Fixes rust-lang#63115 (fallout from rust-lang#62550). r? @petrochenkov
Configuration menu - View commit details
-
Copy full SHA for 810ffe2 - Browse repository at this point
Copy the full SHA 810ffe2View commit details -
Rollup merge of rust-lang#63158 - JohnTitor:add-test-for-58951, r=Cen…
…tril Add test for issue-58951 Closes rust-lang#58951 r? @Centril
Configuration menu - View commit details
-
Copy full SHA for aaec6df - Browse repository at this point
Copy the full SHA aaec6dfView commit details -
Rollup merge of rust-lang#63170 - matklad:cleanup-fields, r=petrochenkov
cleanup StringReader fields reduce visibility and replace `Lrc<SourceFile>` with `start_pos`: the single bit we actually *need* from the file. r? @petrochenkov
Configuration menu - View commit details
-
Copy full SHA for 7a7fcad - Browse repository at this point
Copy the full SHA 7a7fcadView commit details -
Rollup merge of rust-lang#63179 - BaoshanPang:testcases, r=alexcrichton
update test cases for vxWorks issue-2214.rs: lgamma is lgamma on vxWorks ignore process-envs.rs and process-remove-from-env.rs as there is no 'env' on vxWorks
Configuration menu - View commit details
-
Copy full SHA for f5e2390 - Browse repository at this point
Copy the full SHA f5e2390View commit details -
Rollup merge of rust-lang#63188 - waywardmonkeys:release-note-typo-fi…
…xes, r=Centril Fix typos in release notes.
Configuration menu - View commit details
-
Copy full SHA for aa15dad - Browse repository at this point
Copy the full SHA aa15dadView commit details -
Rollup merge of rust-lang#63191 - pietroalbini:really-fix-toolstate, …
…r=alexcrichton ci: fix toolstate not pushing data for Linux A recent commit modified toolstate to only push updated data when the `TOOLSTATE_PUBLISH` environment variable is present. This worked fine on Windows but failed on Linux, since Linux jobs run inside Docker containers and the variable wasn't forwarded inside it. This changes the Docker startup code to set the `TOOLSTATE_PUBLISH` enviornment variable inside the container if it's present outside. r? @alexcrichton fixes rust-lang#63190
Configuration menu - View commit details
-
Copy full SHA for b1d5e52 - Browse repository at this point
Copy the full SHA b1d5e52View commit details