1. 06 Sep, 2013 11 commits
  2. 05 Sep, 2013 5 commits
  3. 04 Sep, 2013 9 commits
  4. 03 Sep, 2013 2 commits
  5. 02 Sep, 2013 1 commit
  6. 31 Aug, 2013 9 commits
  7. 30 Aug, 2013 3 commits
    • Brad Fitzpatrick's avatar
      compress/gzip: add Writer.Reset · db12f9d4
      Brad Fitzpatrick authored
      compress/flate is https://golang.org/cl/12953048
      compress/zlib is https://golang.org/cl/13171046
      
      Update #6138
      
      R=golang-dev, iant
      CC=golang-dev
      https://golang.org/cl/13435043
      db12f9d4
    • Tad Glines's avatar
      database/sql: add SetMaxOpenConns · 41c5d8d8
      Tad Glines authored
      Update #4805
      
      Add the ability to set an open connection limit.
      Fixed case where the Conn finalCloser was being called with db.mu locked.
      Added separate benchmarks for each path for Exec and Query.
      Replaced slice based idle pool with list based idle pool.
      
      R=bradfitz
      CC=golang-dev
      https://golang.org/cl/10726044
      41c5d8d8
    • Adam Langley's avatar
      crypto/x509: expose arbitary X.509 extensions. · 87404c98
      Adam Langley authored
      This change allows people who want to parse or set odd X.509 extensions
      to do so without having to add support for them all to the package.
      
      I tried to make it so that only a single member: Extensions would be
      needed. However, that would mean detecting when the caller had altered
      the contents of it so that parsing and marshaling a certificate
      wouldn't ignore all changes to the other members. This ended up being
      messy, thus the current design where there are two members: one for
      reading and another for writing.
      
      As crypto/x509 adds support for more extensions in the future, the raw
      extensions will still be in Extensions for older code that expects it
      there. Also, future extensions will be overridden by any raw extensions
      added to ExtraExtensions by code that was written before support was
      added.
      
      R=golang-dev, r
      CC=golang-dev, jpsugar
      https://golang.org/cl/12056043
      87404c98