1. 06 Aug, 2019 3 commits
  2. 05 Aug, 2019 5 commits
  3. 03 Aug, 2019 1 commit
  4. 02 Aug, 2019 8 commits
  5. 01 Aug, 2019 5 commits
  6. 31 Jul, 2019 5 commits
  7. 30 Jul, 2019 6 commits
    • David Ndungu's avatar
      net/http: improve Request.Form and Request.PostForm documentation · 1ad64faf
      David Ndungu authored
      Request.PostForm gets populated with form data for PATCH, POST, or PUT
      http verbs.
      
      Change-Id: I33065aa78a8470c4e9490aac830aa6f5963c61cb
      Reviewed-on: https://go-review.googlesource.com/c/go/+/187821Reviewed-by: default avatarEmmanuel Odeke <emm.odeke@gmail.com>
      1ad64faf
    • Bryan C. Mills's avatar
      cmd/go/internal/cache: verify that timestamp is positive · 5f8d8161
      Bryan C. Mills authored
      An apparent typo caused us to re-check size instead.
      
      Updates #29667
      
      Change-Id: Icc1fb9cef1ba77b8490c8fbe6c343be06ff48d8d
      Reviewed-on: https://go-review.googlesource.com/c/go/+/188020
      Run-TryBot: Bryan C. Mills <bcmills@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarJay Conrod <jayconrod@google.com>
      5f8d8161
    • Bryan C. Mills's avatar
      cmd/go/internal/cache: avoid ioutil.WriteFile for writing cache entries · 2fc7574a
      Bryan C. Mills authored
      ioutil.WriteFile always truncates the destination file to 0 before
      writing, which is inappropriate for unsynchronized, idempotent,
      fixed-size files such as the cache entry files here.
      
      Instead, truncate the file only after writing it, so that a second
      write will never (even temporarily!) remove the contents of a
      preceding write.
      
      Fixes #29667
      
      Change-Id: I16a53ce79d8a23d23580511cb6abd062f54b65ef
      Reviewed-on: https://go-review.googlesource.com/c/go/+/188157
      Run-TryBot: Bryan C. Mills <bcmills@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarJay Conrod <jayconrod@google.com>
      2fc7574a
    • Michael Knyszek's avatar
      runtime: call sysHugePage less often · 8c3040d7
      Michael Knyszek authored
      Currently when we coalesce memory we make a sysHugePage call
      (MADV_HUGEPAGE) to ensure freed and coalesced huge pages are treated as
      such so the scavenger's assumptions about performance are more in line
      with reality.
      
      Unfortunately we do it way too often because we do it if there was any
      change to the huge page count for the span we're coalescing into, not
      taking into account that it could coalesce with its neighbors and not
      actually create a new huge page.
      
      This change makes it so that it only calls sysHugePage if the original
      huge page counts between the span to be coalesced into and its neighbors
      do not add up (i.e. a new huge page was created due to alignment). Calls
      to sysHugePage will now happen much less frequently, as intended.
      
      Updates #32828.
      
      Change-Id: Ia175919cb79b730a658250425f97189e27d7fda3
      Reviewed-on: https://go-review.googlesource.com/c/go/+/186926
      Run-TryBot: Austin Clements <austin@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarAustin Clements <austin@google.com>
      8c3040d7
    • Michael Anthony Knyszek's avatar
      runtime: add physHugePageShift · a41ebe6e
      Michael Anthony Knyszek authored
      This change adds physHugePageShift which is defined such that
      1 << physHugePageShift == physHugePageSize. The purpose of this variable
      is to avoid doing expensive divisions in key functions, such as
      (*mspan).hugePages.
      
      This change also does a sweep of any place we might do a division or mod
      operation with physHugePageSize and turns it into bit shifts and other
      bitwise operations.
      
      Finally, this change adds a check to mallocinit which ensures that
      physHugePageSize is always a power of two. osinit might choose to ignore
      non-powers-of-two for the value and replace it with zero, but mallocinit
      will fail if it's not a power of two (or zero). It also derives
      physHugePageShift from physHugePageSize.
      
      This change helps improve the performance of most applications because
      of how often (*mspan).hugePages is called.
      
      Updates #32828.
      
      Change-Id: I1a6db113d52d563f59ae8fd4f0e130858859e68f
      Reviewed-on: https://go-review.googlesource.com/c/go/+/186598
      Run-TryBot: Austin Clements <austin@google.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: default avatarAustin Clements <austin@google.com>
      a41ebe6e
    • Andrew Todd's avatar
      strings: clarify usage of Title and ToTitle · fbb819eb
      Andrew Todd authored
      This is intended to help clear up confusion around the usage of the
      Title and ToTitle functions. It includes a link to define title case
      to distinguish it from upper case. It also includes an additional
      example for the ToTitle function to showcase the difference in behavior
      between it and the Title function.
      
      Fixes #33302
      
      Change-Id: I44e62962fb04d0d22966a39eda3a2d16de7a2291
      Reviewed-on: https://go-review.googlesource.com/c/go/+/187825Reviewed-by: default avatarRob Pike <r@golang.org>
      fbb819eb
  8. 29 Jul, 2019 3 commits
  9. 28 Jul, 2019 1 commit
  10. 27 Jul, 2019 2 commits
  11. 23 Jul, 2019 1 commit