Skip to content
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 4 pull requests #64053

Closed
wants to merge 10 commits into from
Closed

Commits on Aug 30, 2019

  1. rustdoc use -Ccodegen-units=1 by default for test compile

    as the test is small we do not want split up in multiple codegen units
    and also as there is multiple test running at the same time this
    will reduce the number of concurrent threads
    andjo403 committed Aug 30, 2019
    Configuration menu
    Copy the full SHA
    0b478e6 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2019

  1. Configuration menu
    Copy the full SHA
    c8e4748 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cccce09 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1b94610 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e2e1175 View commit details
    Browse the repository at this point in the history
  5. Fix word repetition in str documentation

    Fixes a few repetitions of "like like" in the `trim*` methods documentation of `str`.
    juliangehring committed Aug 31, 2019
    Configuration menu
    Copy the full SHA
    c4d0c28 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2019

  1. Rollup merge of rust-lang#63410 - johnterickson:master, r=joshtriplett

    Update BufWriter example to include call to flush()
    
    I was playing with a writing a Huffman encoder/decoder and was getting weird corruptions and truncations.  I finally realized it was was because `BufWriter` was swallowing write errors 😬.  I've found Rust to generally be explicit and err on the safe side, so I definitely found this unintuitive and not "rustic".
    
    https://twitter.com/johnterickson/status/1159514988123312128
    Centril authored Sep 1, 2019
    Configuration menu
    Copy the full SHA
    ddf1b0c View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#64032 - andjo403:codegen-units, r=Mark-Simu…

    …lacrum
    
    rustdoc use -Ccodegen-units=1 by default for test compile
    
    as the test is small we do not want split up in multiple codegen units
    and also as there is multiple test running at the same time this
    will reduce the number of concurrent threads
    
    tested the test time with `./x.py test src/libcore --doc`
    for my 16 core 32 thread cpu i get about 6% faster execution
    and my 2 core 4 thread cpu I get about 10% faster execution
    
    cc rust-lang#63638
     r? @Mark-Simulacrum
    Centril authored Sep 1, 2019
    Configuration menu
    Copy the full SHA
    5d813c5 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#64039 - pickfire:patch-1, r=jonas-schievink

    Update sync condvar doc style
    Centril authored Sep 1, 2019
    Configuration menu
    Copy the full SHA
    8cbbf97 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#64042 - juliangehring:string-docs, r=jonas-…

    …schievink
    
    Fix word repetition in str documentation
    
    Fixes a few repetitions of "like like" in the `trim*` methods documentation of `str`.
    Centril authored Sep 1, 2019
    Configuration menu
    Copy the full SHA
    adeba4d View commit details
    Browse the repository at this point in the history