1. 07 Oct, 2013 8 commits
  2. 05 Oct, 2013 1 commit
  3. 04 Oct, 2013 6 commits
  4. 03 Oct, 2013 17 commits
  5. 02 Oct, 2013 8 commits
    • Josh Bleecher Snyder's avatar
      encoding/json: add an example for RawMessage · 08570458
      Josh Bleecher Snyder authored
      RawMessage is useful and mildly non-obvious.
      Given the frequency with which RawMessage questions
      show up on golang-nuts, and get answered with an example,
      I suspect adding an example to the docs might help.
      
      R=golang-dev, adg
      CC=golang-dev
      https://golang.org/cl/14190044
      08570458
    • Rob Pike's avatar
      doc/effective_go: fix server example that shares var between goroutines · d38ed2a9
      Rob Pike authored
      Use it as a teaching example about how to solve this problem.
      
      Fixes #6501
      
      R=golang-dev, adg, rsc
      CC=golang-dev
      https://golang.org/cl/14250043
      d38ed2a9
    • Russ Cox's avatar
      net/http: be clear that HTTPS is supported · 1b0bffa9
      Russ Cox authored
      Fixes #6443.
      
      R=golang-dev, iant
      CC=golang-dev
      https://golang.org/cl/14231045
      1b0bffa9
    • Russ Cox's avatar
      runtime: fix finalizer test on amd64 · 5f853d7d
      Russ Cox authored
      Not scanning the stack by frames means we are reintroducing
      a few false positives into the collection. Run the finalizer registration
      in its own goroutine so that stack is guaranteed to be out of
      consideration in a later collection.
      
      This is working around a regression from yesterday's tip, but
      it's not a regression from Go 1.1.
      
      R=golang-dev
      TBR=golang-dev
      CC=golang-dev
      https://golang.org/cl/14290043
      5f853d7d
    • Rémy Oudompheng's avatar
      8d6bc666
    • Frithjof Schulze's avatar
      crypto/tls: Update reference to the TLS 1.2 RFC. · 4d7c6355
      Frithjof Schulze authored
      Ticket 13740047 updated the documented TLS version to 1.2.
      This also updates the RFC refered to.
      
      R=golang-dev
      CC=golang-dev, rsc
      https://golang.org/cl/14029043
      4d7c6355
    • Russ Cox's avatar
      runtime: do not scan stack by frames during garbage collection · c3dadca9
      Russ Cox authored
      Walking the stack by frames is ~3x more expensive
      than not, and since it didn't end up being precise,
      there is not enough benefit to outweigh the cost.
      
      This is the conservative choice: this CL makes the
      stack scanning behavior the same as it was in Go 1.1.
      
      Add benchmarks to package runtime so that we have
      them when we re-enable this feature during the
      Go 1.3 development.
      
      benchmark                     old ns/op    new ns/op    delta
      BenchmarkGoroutineSelect        3194909      1272092  -60.18%
      BenchmarkGoroutineBlocking      3120282       866366  -72.23%
      BenchmarkGoroutineForRange      3256179       939902  -71.13%
      BenchmarkGoroutineIdle          2005571       482982  -75.92%
      
      The Go 1 benchmarks, just to add more data.
      As far as I can tell the changes are mainly noise.
      
      benchmark                         old ns/op    new ns/op    delta
      BenchmarkBinaryTree17            4409403046   4414734932   +0.12%
      BenchmarkFannkuch11              3407708965   3378306120   -0.86%
      BenchmarkFmtFprintfEmpty                100           99   -0.60%
      BenchmarkFmtFprintfString               242          239   -1.24%
      BenchmarkFmtFprintfInt                  204          206   +0.98%
      BenchmarkFmtFprintfIntInt               320          316   -1.25%
      BenchmarkFmtFprintfPrefixedInt          295          299   +1.36%
      BenchmarkFmtFprintfFloat                442          435   -1.58%
      BenchmarkFmtManyArgs                   1246         1216   -2.41%
      BenchmarkGobDecode                 10186951     10051210   -1.33%
      BenchmarkGobEncode                 16504381     16445650   -0.36%
      BenchmarkGzip                     447030885    447056865   +0.01%
      BenchmarkGunzip                   111056154    111696305   +0.58%
      BenchmarkHTTPClientServer             89973        93040   +3.41%
      BenchmarkJSONEncode                28174182     27933893   -0.85%
      BenchmarkJSONDecode               106353777    110443817   +3.85%
      BenchmarkMandelbrot200              4822289      4806083   -0.34%
      BenchmarkGoParse                    6102436      6142734   +0.66%
      BenchmarkRegexpMatchEasy0_32            133          132   -0.75%
      BenchmarkRegexpMatchEasy0_1K            372          373   +0.27%
      BenchmarkRegexpMatchEasy1_32            113          111   -1.77%
      BenchmarkRegexpMatchEasy1_1K            964          940   -2.49%
      BenchmarkRegexpMatchMedium_32           202          205   +1.49%
      BenchmarkRegexpMatchMedium_1K         68862        68858   -0.01%
      BenchmarkRegexpMatchHard_32            3480         3407   -2.10%
      BenchmarkRegexpMatchHard_1K          108255       112614   +4.03%
      BenchmarkRevcomp                  751393035    743929976   -0.99%
      BenchmarkTemplate                 139637041    135402220   -3.03%
      BenchmarkTimeParse                      479          475   -0.84%
      BenchmarkTimeFormat                     460          466   +1.30%
      
      benchmark                          old MB/s     new MB/s  speedup
      BenchmarkGobDecode                    75.34        76.36    1.01x
      BenchmarkGobEncode                    46.50        46.67    1.00x
      BenchmarkGzip                         43.41        43.41    1.00x
      BenchmarkGunzip                      174.73       173.73    0.99x
      BenchmarkJSONEncode                   68.87        69.47    1.01x
      BenchmarkJSONDecode                   18.25        17.57    0.96x
      BenchmarkGoParse                       9.49         9.43    0.99x
      BenchmarkRegexpMatchEasy0_32         239.58       241.74    1.01x
      BenchmarkRegexpMatchEasy0_1K        2749.74      2738.00    1.00x
      BenchmarkRegexpMatchEasy1_32         282.49       286.32    1.01x
      BenchmarkRegexpMatchEasy1_1K        1062.00      1088.96    1.03x
      BenchmarkRegexpMatchMedium_32          4.93         4.86    0.99x
      BenchmarkRegexpMatchMedium_1K         14.87        14.87    1.00x
      BenchmarkRegexpMatchHard_32            9.19         9.39    1.02x
      BenchmarkRegexpMatchHard_1K            9.46         9.09    0.96x
      BenchmarkRevcomp                     338.26       341.65    1.01x
      BenchmarkTemplate                     13.90        14.33    1.03x
      
      Fixes #6482.
      
      R=golang-dev, dave, r
      CC=golang-dev
      https://golang.org/cl/14257043
      c3dadca9
    • Shenghou Ma's avatar
      cmd/dist, build: support building statically linked toolchain · 6b188ef5
      Shenghou Ma authored
      Added a new $GO_DISTFLAGS to make.bash, and while we're here,
      added mention $CXX in make.bash (CL 13704044).
      
      Fixes #6448.
      Update #3564
      We can pass GO_DISTFLAGS=-s from misc/dist to make.bash so that
      it will build a statically linked toolchain.
      (Note: OS X doesn't have the concept of static linking, so don't
      pass GO_DISTFLAGS=-s for OS X builds)
      
      R=adg, rsc, iant
      CC=golang-dev
      https://golang.org/cl/13887043
      6b188ef5