-
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 9 pull requests #100931
Rollup of 9 pull requests #100931
Commits on Jun 29, 2022
-
Configuration menu - View commit details
-
Copy full SHA for bc6049a - Browse repository at this point
Copy the full SHA bc6049aView commit details
Commits on Aug 15, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 7680c8b - Browse repository at this point
Copy the full SHA 7680c8bView commit details
Commits on Aug 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 8998024 - Browse repository at this point
Copy the full SHA 8998024View commit details -
Extra documentation for new formatting feature
High traffic macros should detail this helpful addition.
Configuration menu - View commit details
-
Copy full SHA for acca4b8 - Browse repository at this point
Copy the full SHA acca4b8View commit details
Commits on Aug 22, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 000dc80 - Browse repository at this point
Copy the full SHA 000dc80View commit details -
Use getuid to check instead of USER env var in rustbuild
This makes it consistent with `x.py` as changed in rust-lang#95671 Fixes rust-lang#100459
Configuration menu - View commit details
-
Copy full SHA for 9fc23bb - Browse repository at this point
Copy the full SHA 9fc23bbView commit details
Commits on Aug 23, 2022
-
Configuration menu - View commit details
-
Copy full SHA for ba74a62 - Browse repository at this point
Copy the full SHA ba74a62View commit details -
Make use of
[wrapping_]byte_{add,sub}
...replacing `.cast().wrapping_offset().cast()` & similar code.
Configuration menu - View commit details
-
Copy full SHA for 53565b2 - Browse repository at this point
Copy the full SHA 53565b2View commit details -
Use
--userns=keep-id
when "docker" is really podmanRootless podman creates a separate user namespace, where an inner `LOCAL_USER_ID` will map to a different subuid range on the host. The "keep-id" mode maps the current UID directly into the container. This makes `src/ci/docker/run.sh` work better for testing container images on systems running podman, where "docker" is just a shim.
Configuration menu - View commit details
-
Copy full SHA for 4eb748b - Browse repository at this point
Copy the full SHA 4eb748bView commit details -
Rollup merge of rust-lang#98301 - ortem:pretty-printers-nonzero, r=we…
…sleywiser Add GDB/LLDB pretty-printers for NonZero types Add GDB/LLDB pretty-printers for `NonZero` types. These pretty-printers were originally implemented for IntelliJ Rust by `@Kobzol` in intellij-rust/intellij-rust#5270. Part of rust-lang#29392.
Configuration menu - View commit details
-
Copy full SHA for 88ce108 - Browse repository at this point
Copy the full SHA 88ce108View commit details -
Rollup merge of rust-lang#100220 - scottmcm:fix-by-ref-sized, r=josht…
…riplett Properly forward `ByRefSized::fold` to the inner iterator cc `@timvermeulen,` who noticed this mistake in rust-lang#100214 (comment)
Configuration menu - View commit details
-
Copy full SHA for d662b9c - Browse repository at this point
Copy the full SHA d662b9cView commit details -
Rollup merge of rust-lang#100811 - czzrr:master, r=Mark-Simulacrum
Fix wrong compiletest filters on Windows As discussed in [rust-lang#79334](rust-lang#79334), when calling e.g. ``` python x.py test src/test/ui/expr/compound-assignment/eval-order.rs ``` on Windows, compiletest passes the filter `expr/compound-assignment/eval-order.rs` to libtest, which instead should be `expr\compound-assignment\eval-order.rs`, as that is the file found when collecting tests. This is what I fixed. I'm not sure how to organize a test for this. Any suggestions?
Configuration menu - View commit details
-
Copy full SHA for 8ab562b - Browse repository at this point
Copy the full SHA 8ab562bView commit details -
Rollup merge of rust-lang#100819 - WaffleLapkin:use_ptr_byte_methods,…
… r=scottmcm Make use of `[wrapping_]byte_{add,sub}` These new methods trivially replace old `.cast().wrapping_offset().cast()` & similar code. Note that [`arith_offset`](https://doc.rust-lang.org/std/intrinsics/fn.arith_offset.html) and `wrapping_offset` are the same thing. r? `@scottmcm` _split off from #100746_
Configuration menu - View commit details
-
Copy full SHA for 3577767 - Browse repository at this point
Copy the full SHA 3577767View commit details -
Rollup merge of rust-lang#100852 - Samyak2:samyak/100459, r=Mark-Simu…
…lacrum Use `getuid` to check instead of `USER` env var in rustbuild This makes it consistent with `x.py` as changed in rust-lang#95671 Fixes rust-lang#100459
Configuration menu - View commit details
-
Copy full SHA for b2407ea - Browse repository at this point
Copy the full SHA b2407eaView commit details -
Rollup merge of rust-lang#100855 - IsaacCloos:master, r=joshtriplett
Extra documentation for new formatting feature Documentation of this feature was added in rust-lang#90473 and released in Rust 1.58. However, high traffic macros did not receive new examples. Namely `println!()` and `format!()`. The doc comments included in Rust are super important to the community- especially newcomers. I have met several other newbies like myself who are unaware of this recent (well about 7 months old now) update to the language allowing for convenient intra-string identifiers. Bringing small examples of this feature to the doc comments of `println!()` and `format!()` would be helpful to everyone learning the language. [Blog Post Announcing Feature](https://blog.rust-lang.org/2022/01/13/Rust-1.58.0.html) [Feature PR](rust-lang#90473) - includes several instances of documentation of the feature- minus the macros in question for this PR *This is my first time contributing to a project this large. Feedback would mean the world to me 😄* --- *Recreated; I violated the [No-Merge Policy](https://rustc-dev-guide.rust-lang.org/git.html#no-merge-policy)*
Configuration menu - View commit details
-
Copy full SHA for c1e0280 - Browse repository at this point
Copy the full SHA c1e0280View commit details -
Rollup merge of rust-lang#100901 - TaKO8Ki:make-some-methods-private,…
… r=sanxiyn Make some methods private
Configuration menu - View commit details
-
Copy full SHA for f123b8d - Browse repository at this point
Copy the full SHA f123b8dView commit details -
Rollup merge of rust-lang#100912 - tmiasko:make-include, r=TaKO8Ki
Diagnose missing includes in run-make tests
Configuration menu - View commit details
-
Copy full SHA for d9fd2c4 - Browse repository at this point
Copy the full SHA d9fd2c4View commit details -
Rollup merge of rust-lang#100930 - cuviper:podman-keep-id, r=jyn514
Use `--userns=keep-id` when "docker" is really podman Rootless podman creates a separate user namespace, where an inner `LOCAL_USER_ID` will map to a different subuid range on the host. The "keep-id" mode maps the current UID directly into the container. This makes `src/ci/docker/run.sh` work better for testing container images on systems running podman, where "docker" is just a shim.
Configuration menu - View commit details
-
Copy full SHA for 9ce0c3a - Browse repository at this point
Copy the full SHA 9ce0c3aView commit details