- 11 Feb, 2013 5 commits
-
-
Andrew Gerrand authored
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/7306078
-
Nigel Tao authored
sub-repo. The matching change is at https://golang.org/cl/7310063 The rationale was discussed at https://groups.google.com/d/topic/golang-nuts/Qq5hTQyPuLg/discussion R=adg, dave CC=golang-dev https://golang.org/cl/7317043
-
Volker Dobler authored
This CL provides the rest of the SetCookies code as well as some test infrastructure which will be used to test also the Cookies method. This test infrastructure is optimized for readability and tries to make it easy to review table driven test cases. Tests for all the different corner cases of SetCookies will be provided in a separate CL. R=nigeltao, rsc, bradfitz CC=golang-dev https://golang.org/cl/7306054
-
Dave Cheney authored
Fixes #4582. * mentioned hg upload. * added section on hg file. * added small mention about being inside $GOROOT. * added hg revert @NNNN * reorganise the hg submit section for the common case of a non committer. * made the Copyright section h2 * added note about leaving copyright years unchanged. R=golang-dev, metanata4, shivakumar.gn, minux.ma, adg, shanemhansen CC=golang-dev, metanata4 https://golang.org/cl/7278047
-
Shane Hansen authored
Support reading pax archives and applying extended attributes like long names, subsecond mtime resolutions, etc. Default to writing pax archives for long file and link names. Support reading gnu archives using the ././@LongLink extended header for file name and link target. Fixes #3300 R=dsymonds, dave, rogpeppe, remyoudompheng, chressie, rsc CC=golang-dev https://golang.org/cl/6700047
-
- 10 Feb, 2013 4 commits
-
-
Lucio De Re authored
R=golang-dev, nigeltao CC=golang-dev https://golang.org/cl/7304069
-
Dave Cheney authored
Fixes #4010. This proposal avoids cluttering the main install-source.html with OS specific instructions by linking to the wiki for details. See discussion in the comments. R=adg, minux.ma CC=golang-dev https://golang.org/cl/7241068
-
Greg Ward authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/7308079
-
Andrew Gerrand authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/7303069
-
- 09 Feb, 2013 8 commits
-
-
Russ Cox authored
The spec is not clear about whether this is allowed or not, but both compilers allow it, because the reflect implementation takes advantage of it. Document current behavior. Fixes #4679. R=golang-dev, r CC=golang-dev https://golang.org/cl/7303064
-
Dave Cheney authored
Add benchmarks for common http benchmarking tools. The intent is to catch optimisations which favor synthetic benchmarks that do not show improvements for real clients like Chrome. BenchmarkReadRequestChrome 200000 10133 ns/op 60.29 MB/s 3148 B/op 32 allocs/op BenchmarkReadRequestCurl 500000 4314 ns/op 18.08 MB/s 905 B/op 15 allocs/op BenchmarkReadRequestApachebench 500000 4363 ns/op 18.79 MB/s 956 B/op 16 allocs/op BenchmarkReadRequestSiege 500000 6408 ns/op 24.19 MB/s 1397 B/op 22 allocs/op BenchmarkReadRequestWrk 1000000 2838 ns/op 14.09 MB/s 757 B/op 11 allocs/op R=golang-dev, bradfitz CC=golang-dev, haimuiba https://golang.org/cl/7300075
-
Russ Cox authored
Fixes #4573. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7322043
-
Adam Langley authored
On Windows, CryptoAPI is finding an alternative validation path. Since this is a little non-deterministic, this change disables that test when using system validation. R=golang-dev CC=golang-dev https://golang.org/cl/7313068
-
Russ Cox authored
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/7314071
-
Adam Langley authored
By default, crypto/x509 assumes that users wish to validate certificates for ServerAuth. However, due to historical reasons, COMODO's intermediates don't specify ServerAuth as an allowed key usage. Rather NSS and CryptoAPI both allow these SGC OIDs to be equivalent to ServerAuth. R=rsc CC=golang-dev https://golang.org/cl/7312070
-
Shenghou Ma authored
R=golang-dev, agl, bradfitz, rsc CC=golang-dev https://golang.org/cl/7299064
-
Shenghou Ma authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/7305065
-
- 08 Feb, 2013 20 commits
-
-
Mikio Hara authored
The socket for AF_UNIX domain with SOCK_DGARM type isn't allowed to work with syscall listen. R=rsc CC=golang-dev https://golang.org/cl/7310068
-
Robert Daniel Kortschak authored
R=rsc, minux.ma CC=golang-dev https://golang.org/cl/7300063
-
Jan Ziak authored
R=golang-dev, rsc CC=dave, dvyukov, golang-dev, minux.ma, remyoudompheng https://golang.org/cl/7252047
-
Dave Cheney authored
Add benchmark for request parsing. Fixture data is taken from https://github.com/felixge/node-http-perf % go version go version devel +28966b7b2f0c Thu Feb 07 20:26:12 2013 -0800 linux/amd64 % go test -run=nil -bench=ReadRequest -benchtime=10s PASS BenchmarkReadRequest 2000000 9900 ns/op 61.71 MB/s 3148 B/op 32 allocs/op ok net/http 12.180s R=golang-dev, bradfitz, minux.ma, haimuiba CC=golang-dev https://golang.org/cl/7313048
-
Péter Surányi authored
On POSIX, '=' in key is explicitly invalid, and '\x00' in key/value is implicitly invalid. R=golang-dev, iant, bradfitz CC=golang-dev https://golang.org/cl/7311061
-
Kamil Kisiel authored
R=golang-dev, adg, bradfitz CC=golang-dev https://golang.org/cl/7314046
-
Alan Donovan authored
syscall.{Kill,Write} are not portable to MS Windows, so we disable them for now. R=iant, rsc CC=golang-dev https://golang.org/cl/7312066
-
Alan Donovan authored
R=gri, iant CC=golang-dev https://golang.org/cl/7226065
-
Dmitriy Vyukov authored
With the new scheduler races in the tests are reported during execution of other tests. The change joins goroutines started during the tests. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7310066
-
Dmitriy Vyukov authored
The problem happens when end=0, then end-1 is very big number. Observed with the new scheduler. R=golang-dev, iant CC=golang-dev https://golang.org/cl/7307073
-
Mikio Hara authored
R=golang-dev, dave, bradfitz CC=golang-dev https://golang.org/cl/7300065
-
Mikio Hara authored
R=golang-dev, dave CC=golang-dev https://golang.org/cl/7299067
-
Rémy Oudompheng authored
See issue 887 for the 8g analogue. R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/7306069
-
Shenghou Ma authored
R=dave, rsc CC=golang-dev https://golang.org/cl/7299055
-
Jeremy Schlatter authored
R=golang-dev, dave, minux.ma, bradfitz, rsc CC=golang-dev https://golang.org/cl/7312055
-
Brad Fitzpatrick authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/7307070
-
Russ Cox authored
Depends on https://golang.org/cl/7308067 R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7312064
-
Russ Cox authored
It might be non-blocking, but it also might be blocking. Cannot take the chance, as Accept might block indefinitely and make it impossible to acquire ForkLock exclusively (during fork+exec). Fixes #4737. R=golang-dev, dave, iant, mikioh.mikioh CC=golang-dev https://golang.org/cl/7309050
-
David Symonds authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7309061
-
Brad Fitzpatrick authored
Before and after: BenchmarkTrimSpace 20000000 81.3 ns/op BenchmarkTrimSpace 50000000 58.0 ns/op (most whitespace trimming is ASCII whitespace) Same optimization appeared a handful of other places in this file, but not here. R=golang-dev, dave CC=golang-dev https://golang.org/cl/7305063
-
- 07 Feb, 2013 3 commits
-
-
Russ Cox authored
Fixes #887. R=ken2 CC=golang-dev https://golang.org/cl/7303061
-
Ian Lance Taylor authored
R=golang-dev, minux.ma, agl CC=golang-dev https://golang.org/cl/7305059
-
Ian Lance Taylor authored
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/7308060
-