- 27 May, 2011 4 commits
-
-
Andrew Gerrand authored
Also put Weekly Snapshot History link on 'Contributing' page Fixes #1885. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4559049
-
Dmitry Chestnykh authored
Fixes #1511 again. R=golang-dev, iant CC=golang-dev https://golang.org/cl/4527070
-
Gustavo Niemeyer authored
Fixes issue #1853. R=golang-dev, mattn.jp, adg CC=golang-dev https://golang.org/cl/4550084
-
Mikio Hara authored
R=rsc CC=golang-dev https://golang.org/cl/4539084
-
- 26 May, 2011 12 commits
-
-
Alex Brainman authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/4515142
-
Mikio Hara authored
R=rsc CC=golang-dev https://golang.org/cl/4515135
-
Ivan Krasin authored
Incorporate refactoring and a regression test from https://golang.org/cl/4538090/ R=rsc, go.peter.90, imkrasin CC=golang-dev, mirtchovski https://golang.org/cl/4524070
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/4532090
-
Ian Lance Taylor authored
Fixes #1843. R=rsc CC=golang-dev https://golang.org/cl/4535101
-
Robert Griesemer authored
R=r, rsc CC=golang-dev https://golang.org/cl/4530069
-
Robert Griesemer authored
Added corresponding tests. R=rsc CC=golang-dev https://golang.org/cl/4560045
-
William Chan authored
Added a new Framer to handle reading/writing Frames. This is necessary since we have to maintain a compression context across streams. TODO: * Separate the types and read/write routines into different files. * Improve error handling. R=bradfitz, rsc CC=golang-dev https://golang.org/cl/4503042
-
Brad Fitzpatrick authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/4552066
-
Brad Fitzpatrick authored
before/after: binary.BenchmarkRead 200000 10860 ns/op binary.BenchmarkRead 500000 2846 ns/op R=rsc CC=golang-dev https://golang.org/cl/4547062
-
Yasuhiro Matsumoto authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/4550086
-
Brad Fitzpatrick authored
R=rsc CC=golang-dev https://golang.org/cl/4532089
-
- 25 May, 2011 17 commits
-
-
Brad Fitzpatrick authored
This permits external packages implementing e.g. FTP or gopher to register themselves with the http.DefaultClient: package ftp func init() { http.DefaultTransport.RegisterProtocol("ftp", &ftp{}) } Client code would look like: import ( _ "github.com/exampleuser/go/gopher" _ "github.com/exampleuser/go/ftp" ) func main() { resp, err := http.Get("ftp://example.com/path.txt") ... } R=dsymonds, rsc CC=golang-dev https://golang.org/cl/4526077
-
Brad Fitzpatrick authored
... like encoding/hex. Same signatures. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4530070
-
Ian Lance Taylor authored
Fixes #1872. R=rsc CC=golang-dev, lars.pensjo https://golang.org/cl/4559046
-
Robert Griesemer authored
R=r, rsc CC=golang-dev https://golang.org/cl/4538096
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/4548058
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4529087
-
Brad Fitzpatrick authored
Speeds up static fileserver, avoiding kernel/userspace copies. Numbers: downloading 14 MB AppEngine Go SDK with ab (Apache Bench) with 5 threads: Before/after numbers: CPU: user 0m3.910s sys 0m23.650s -> user 0m0.720s sys 0m4.890s Time taken for tests: 8.906 seconds -> Time taken for tests: 8.545 seconds Percentage of the requests served within a certain time (ms) 50% 44 66% 45 75% 46 80% 46 90% 48 95% 51 98% 59 99% 71 100 74 (longest request) -> 50% 42 66% 43 75% 43 80% 44 90% 46 95% 57 98% 62 99% 63 100% 64 (longest request) R=iant, gary.burd, rsc, bradfitz CC=golang-dev https://golang.org/cl/4543071
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/4539086
-
Russ Cox authored
Makes all.bash work after echo 4 >/proc/cpu/alignment, which means kill the process on an unaligned access. The default behavior on DreamPlug/GuruPlug/SheevaPlug is to simulate an ARMv3 and just let the unaligned accesses stop at the word boundary, resulting in all kinds of surprises. Fixes #1240. R=ken2 CC=golang-dev https://golang.org/cl/4551064
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/4538095
-
Russ Cox authored
Reenable dwarf output on Mac. Was writing headers but no actual dwarf data. Fixes #1877 (accidentally). Workaround for issue 1878. R=lvd CC=golang-dev https://golang.org/cl/4515139
-
Wei Guangjing authored
R=alex.brainman, rsc CC=golang-dev, vcc.163 https://golang.org/cl/4516055
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/4556060
-
Ian Lance Taylor authored
On Solaris /bin is a symlink to /usr/bin, so running "pwd" in the directory "/bin" prints out "/usr/bin". R=rsc, r, bradfitz CC=golang-dev https://golang.org/cl/4559043
-
Rob Pike authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4556059
-
Andrew Gerrand authored
Fixes #1876. R=golang-dev, bradfitz, gri, r CC=golang-dev https://golang.org/cl/4538093
-
Rob Pike authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4536082
-
- 24 May, 2011 7 commits
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/4529084
-
Anthony Martin authored
The spec was adjusted in commit df410d6a4842 to allow the implicit assignment of strutures with unexported fields in method receivers. This change updates the compiler. Also moved bug322 into fixedbugs and updated golden.out to reflect the removal of the last known bug. Fixes #1402. R=golang-dev, gri, rsc CC=golang-dev https://golang.org/cl/4526069
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/4550077
-
Robert Griesemer authored
Fixes #1867. R=r CC=golang-dev https://golang.org/cl/4538092
-
Rob Pike authored
In our evolving style, prose should name a function "f" not "f()". R=gri, rsc CC=golang-dev https://golang.org/cl/4550075
-
Rob Pike authored
A real humdinger. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4538089
-
Brad Fitzpatrick authored
I had a report that this was broken. It seems fine. I think the reporter was just never flushing their response headers. If I omit the test server's initial Flush I get the same behavior as reported. (a hang at Client.Get) R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4552062
-