- 31 May, 2011 16 commits
-
-
Russ Cox authored
Fixes #1900. R=ken2 CC=golang-dev https://golang.org/cl/4561053
-
Anthony Martin authored
Fixes #1866. R=bradfitz, rsc CC=golang-dev https://golang.org/cl/4548073
-
Adam Langley authored
R=agl CC=golang-dev https://golang.org/cl/4551081
-
Russ Cox authored
The change is that 1.0<<2 is now okay. R=ken2 CC=golang-dev https://golang.org/cl/4524084
-
Luuk van Dijk authored
before: runtime_test.BenchmarkCallClosure 5000000 499 ns/op runtime_test.BenchmarkCallClosure1 5000000 681 ns/op after: runtime_test.BenchmarkCallClosure 500000000 5 ns/op runtime_test.BenchmarkCallClosure1 10000000 160 ns/op R=rsc CC=golang-dev https://golang.org/cl/4515167
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/4558042
-
Russ Cox authored
breaks Mac build ««« original CL description runtime: use HOST_CC to compile mkversion HOST_CC is set in Make.inc, so use that rather than hardcoding quietgcc R=golang-dev, iant CC=golang-dev https://golang.org/cl/4515163 »»» R=iant CC=golang-dev https://golang.org/cl/4515168
-
Dave Cheney authored
HOST_CC is set in Make.inc, so use that rather than hardcoding quietgcc R=golang-dev, iant CC=golang-dev https://golang.org/cl/4515163
-
Anthony Martin authored
Fixes #1663. Fixes #1871. R=rsc, lstoakes CC=golang-dev https://golang.org/cl/4530084
-
Adam Langley authored
I found this useful, esp with an io.MultiWriter. But I fear that it may be bloat in such a low-level package so please feel free to decline if you feel likewise. R=rsc, ality CC=golang-dev https://golang.org/cl/4530088
-
Brad Fitzpatrick authored
Also some cleanup, removing redundant code. Make more things use NewRequest. Add some tests, docs. R=golang-dev, adg, rsc CC=golang-dev https://golang.org/cl/4561047
-
Christopher Wedgwood authored
getaddrinfo() orders the addresses according to RFC 3484. This means when IPv6 is working on a host we get results like: []string = {"2001:4810::110", "66.117.47.214"} and when it's not working we get: []string = {"66.117.47.214", "2001:4810::110"} thus can drop firstFavoriteAddr. This also means /etc/gai.conf works on relevant systems. R=rsc, mikioh.mikioh CC=golang-dev https://golang.org/cl/4557058
-
Dmitriy Vyukov authored
Fix the fact that the test leaves GOMAXPROCS=3 and a running goroutine behind. R=golang-dev, rsc CC=dvyukov, golang-dev https://golang.org/cl/4517121
-
Vincent Vanackere authored
On windows, the command line is passed as a single null-terminated string. While the automatic parameter escaping done by syscall.StartProcess works fine with most Windows programs, some applications do their own custom parsing of the command line, in which case the automatic escaping becomes harmful. This CL adds a new extra CmdLine field to syscall.ProcAttr that will be used as the raw/unescaped command line if not empty. Fixes #1849. R=golang-dev, alex.brainman, bradfitz, rsc CC=golang-dev https://golang.org/cl/4548050
-
Alexey Borzenkov authored
Fixes #1779 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4566041
-
Gustavo Niemeyer authored
When I was first coding Abs, I wondered if people wouldn't expect the path to be consistently clean, even if the path passed in was already absolute. CL 4524078 has a potential problem based on exactly that assumption, so it feels like this behavior is indeed the most useful and least surprising. R=golang-dev, adg CC=golang-dev https://golang.org/cl/4548074
-
- 30 May, 2011 12 commits
-
-
Rob Pike authored
By splitting the ranges into 16-bit values and 32-bit values, we can reduce about 3000 entries by 48 bits per entry, or about 16KB, at the cost of a little more complexity in the code. R=iant, bradfitz, rsc, r CC=golang-dev https://golang.org/cl/4547066
-
Russ Cox authored
R=adg, n13m3y3r CC=golang-dev https://golang.org/cl/4526084
-
Gustavo Niemeyer authored
Fixes issue #1897. R=r, gustavo, r CC=golang-dev https://golang.org/cl/4561049
-
Andrew Gerrand authored
R=alex.brainman CC=golang-dev https://golang.org/cl/4528109
-
Robert Hencke authored
also, a few miscellaneous fixes to files outside pkg R=golang-dev, dsymonds, mikioh.mikioh, r CC=golang-dev https://golang.org/cl/4517116
-
Alex Brainman authored
R=golang-dev, r, adg CC=golang-dev https://golang.org/cl/4551074
-
Yasuhiro Matsumoto authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/4548071
-
Yasuhiro Matsumoto authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4548072
-
Andrew Gerrand authored
R=bradfitz, rsc CC=golang-dev https://golang.org/cl/4530061
-
Alex Brainman authored
R=r, devon.odell, iant, rsc, adg CC=bradfitz, golang-dev, jdpoirier https://golang.org/cl/4536053
-
Nigel Tao authored
R=r CC=golang-dev https://golang.org/cl/4560049
-
David Symonds authored
R=r, adg CC=golang-dev https://golang.org/cl/4515159
-
- 29 May, 2011 5 commits
-
-
Brad Fitzpatrick authored
Permits the use of SOCKS proxy dialer with the transport. R=golang-dev, adg CC=golang-dev https://golang.org/cl/4536091
-
Rob Pike authored
Remove the idea of space being white. Sometimes space is green. Simplify a comment and remove the Latin. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4532096
-
Gustavo Niemeyer authored
Fixes issue #1896. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4539093
-
Yasuhiro Matsumoto authored
MkdirAll() need to use isSeparator(). Move primary defines of filepath.Separator/filepath.ListSeparator to os.PathSeparator/os.PathListSeparator. Move filepath.isSeparator() to os.IsPathSeparator(). filepath package refer them from os package. Fixes #1831. R=rsc, alex.brainman CC=golang-dev https://golang.org/cl/4535100
-
Alex Brainman authored
Fixes #1893. R=golang-dev CC=bradfitz, golang-dev https://golang.org/cl/4528106
-
- 28 May, 2011 1 commit
-
-
Alex Brainman authored
As suggested by dho, iant2. R=golang-dev, rsc CC=devon.odell, golang-dev, iant https://golang.org/cl/4515147
-
- 27 May, 2011 6 commits
-
-
Evan Shaw authored
R=gri CC=golang-dev https://golang.org/cl/4560047
-
Brad Fitzpatrick authored
baseline runs: (6g, gopher.mtv) http_test.BenchmarkClientServer 5000 412588 ns/op http_test.BenchmarkClientServer 5000 403346 ns/op http_test.BenchmarkClientServer 5000 413936 ns/op http_test.BenchmarkClientServer 5000 410287 ns/op http_test.BenchmarkClientServer 5000 388037 ns/op http_test.BenchmarkClientServer 5000 405545 ns/op http_test.BenchmarkClientServer 5000 405179 ns/op http_test.BenchmarkClientServer 5000 413827 ns/op http_test.BenchmarkClientServer 5000 392723 ns/op R=golang-dev, r CC=golang-dev https://golang.org/cl/4515155
-
Brad Fitzpatrick authored
before/after: binary.BenchmarkWrite 100000 18312 ns/op binary.BenchmarkWrite 500000 4468 ns/op R=rsc, gri CC=golang-dev https://golang.org/cl/4515154
-
Evan Shaw authored
R=gri CC=golang-dev https://golang.org/cl/4552056
-
Rob Pike authored
This is the other half of the problem fixed at noon by the previous change. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4515150
-
Brad Fitzpatrick authored
R=golang-dev, fshahriar CC=golang-dev https://golang.org/cl/4548068
-