- 24 Apr, 2013 1 commit
-
-
Ian Lance Taylor authored
R=r, ken, khr, daniel.morsing CC=dsymonds, golang-dev, rickyz https://golang.org/cl/8925043
-
- 23 Apr, 2013 8 commits
-
-
Mikio Hara authored
R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/8698049
-
Anthony Martin authored
We have to reset the global lineno variable before processing each file otherwise line numbers will be offset by the number of lines in the previous file. The following examples are from the beginning of the ztime_linux_amd64.c file which is generated from time.goc in the runtime package. Before: #line 2483 "/home/apm/src/go/src/pkg/runtime/time.goc" static Timers timers; static void addtimer ( Timer* ) ; void time·Sleep(int64 ns) { #line 2492 "/home/apm/src/go/src/pkg/runtime/time.goc" After: #line 16 "/home/apm/src/go/src/pkg/runtime/time.goc" static Timers timers; static void addtimer ( Timer* ) ; void time·Sleep(int64 ns) { #line 25 "/home/apm/src/go/src/pkg/runtime/time.goc" R=golang-dev, minux.ma, iant, r, adg CC=golang-dev https://golang.org/cl/8653045
-
Shenghou Ma authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8896045
-
Oling Cat authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8919043
-
Jeremy Jackins authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8625044
-
Shenghou Ma authored
Fixes #5333. R=golang-dev, adg CC=golang-dev https://golang.org/cl/8698046
-
Mikio Hara authored
The protocol number of ICMP for IPv6 is 58, not 1. R=golang-dev, iant, r CC=golang-dev https://golang.org/cl/8663048
-
Christian Himpel authored
R=r CC=golang-dev https://golang.org/cl/8889045
-
- 22 Apr, 2013 6 commits
-
-
Rob Pike authored
This should do it for the release. There was a new data set pushed out a couple of days ago. Fixes #4553. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8621044
-
Rob Pike authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8915043
-
Shenghou Ma authored
Depends on CL 8715043 and CL 8676050. Fixes #5273. R=alex.brainman, r CC=gobot, golang-dev https://golang.org/cl/8764043
-
Rob Pike authored
Change the term 'standard time', which already means something, to 'reference time', and add a couple of sentences and clarifications. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8799047
-
Brad Fitzpatrick authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/8911044
-
Andrew Gerrand authored
Fixes #5329. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8897044
-
- 21 Apr, 2013 4 commits
-
-
Jonathan Rudenberg authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/8880043
-
Brad Fitzpatrick authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/8887043
-
Brad Fitzpatrick authored
No reason to pull in math just for x != x. R=golang-dev, r CC=golang-dev https://golang.org/cl/8886043
-
Brad Fitzpatrick authored
R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/8721045
-
- 20 Apr, 2013 2 commits
-
-
Alex Brainman authored
This should have been part of CL8715043. Update #5106 R=golang-dev, r, iant CC=golang-dev https://golang.org/cl/8676050
-
Mikio Hara authored
Update #5219. R=golang-dev, dvyukov, r CC=golang-dev https://golang.org/cl/8602047
-
- 19 Apr, 2013 5 commits
-
-
Brad Fitzpatrick authored
Fixes #5316 R=golang-dev, r, minux.ma CC=golang-dev https://golang.org/cl/8871043
-
Shenghou Ma authored
before: fmt.statictmp_0731:/usr/local/go/pkg/tool/linux_amd64/6l: running gcc failed: unsuccessful exit status 0x100 now: /usr/local/go/pkg/tool/linux_amd64/6l: running gcc failed: unsuccessful exit status 0x100 R=golang-dev, iant, r CC=golang-dev https://golang.org/cl/8827045
-
Rob Pike authored
But stop eventually if the reader misbehaves. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8757045
-
Rob Pike authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8833050
-
Rob Pike authored
Also add a new variable ErrNoProgress that io.Readers can use to report ineffectual Read calls. Fixes #5310. R=golang-dev, dsymonds, bradfitz CC=golang-dev https://golang.org/cl/8845043
-
- 18 Apr, 2013 7 commits
-
-
Brad Fitzpatrick authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/8763045
-
Robert Griesemer authored
Fixes #5315. R=golang-dev, r CC=golang-dev https://golang.org/cl/8841048
-
Brad Fitzpatrick authored
I read docs and wrote a crawler + link checker on the plane, which also checks for #fragments. I'll send that out later when it's less gross. R=golang-dev, r CC=golang-dev https://golang.org/cl/8729050
-
Dave Cheney authored
https://golang.org/cl/8134043 disabled cgo when cross compiling, this means builders which compile for both amd64 and 386 will be compiling the latter with cgo disabled. This proposal modifies the builder to mirror the dist tool by always doing a native build. Tested on my darwin/amd64 builder and confirmed the result when building darwin/386 is a native 386 build with cgo enabled. R=bradfitz, dsymonds, r, adg CC=golang-dev https://golang.org/cl/8842044
-
Rémy Oudompheng authored
Also document the panic to be consistent with math/rand. Fixes #5187. R=golang-dev, dave, bradfitz, r CC=golang-dev https://golang.org/cl/8303043
-
Brad Fitzpatrick authored
Late bug fix, but this is arguably a regression from Go 1.0, since we added this transparent decoding since then. Without this fix, Go 1.0 users could decode this correctly, but Go 1.1 users would not be able to. The newly added test is from the RFC itself. The updated tests had the wrong "want" values before. They were there to test \r\n vs \n equivalence (which is unchanged), not leading whitespace. The skipWhite decoder struct field was added in the battles of Issue 4771 in revision b3bb265bfecf. It was just a wrong strategy, from an earlier round of attempts in https://golang.org/cl/7300092/ Update #4771 Fixes #5295 R=golang-dev, r CC=golang-dev https://golang.org/cl/8536045
-
David Symonds authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/8821046
-
- 17 Apr, 2013 4 commits
-
-
Brad Fitzpatrick authored
Fixes #5293 R=golang-dev, r CC=golang-dev https://golang.org/cl/8840043
-
Brad Fitzpatrick authored
Fixes #5307 R=golang-dev, r CC=golang-dev https://golang.org/cl/8676046
-
Alexei Sholik authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/8662045
-
Shenghou Ma authored
See https://code.google.com/p/go/issues/detail?id=5227#c16. R=golang-dev, r CC=golang-dev https://golang.org/cl/8833044
-
- 16 Apr, 2013 3 commits
-
-
Rob Pike authored
I wrote a tool. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8695047
-
Rob Pike authored
It's clear that that should never happen. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8798045
-
Shenghou Ma authored
Fixes #5296. R=golang-dev, r CC=golang-dev https://golang.org/cl/8682044
-