- 18 Feb, 2011 13 commits
-
-
Dave Cheney authored
Using make -C $* rather than (cd $* ; make) results in a small, but measurable improvement in build times where compilation is not the major component. eg. before - ~/go/src/pkg$ time make real 0m1.176s user 0m0.639s sys 0m0.399s after - ~/go/src/pkg$ time make real 0m0.916s user 0m0.571s sys 0m0.243s There are other places in the distribution src/make.common for example that could also benefit from this change. R=adg CC=golang-dev, rsc https://golang.org/cl/4174055
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/4170063
-
Dave Cheney authored
R=rsc, mikioh, rsc1, dho CC=golang-dev https://golang.org/cl/4174056
-
Rob Pike authored
R=agl CC=golang-dev https://golang.org/cl/4173062
-
Andrew Gerrand authored
R=gri, niemeyer, rsc, r2, r CC=golang-dev https://golang.org/cl/4188063
-
Gustavo Niemeyer authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/4173063
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/4191048
-
Russ Cox authored
pieces of an upcoming CL leaked into CL 4168056 TBR=r CC=golang-dev https://golang.org/cl/4180057
-
Russ Cox authored
Update #1527. R=adg, oerdnj CC=golang-dev https://golang.org/cl/4171060
-
Russ Cox authored
Was required by old cgo but we don't generate stub .so files anymore. Update #1527. R=iant CC=golang-dev https://golang.org/cl/4168056
-
Adam Langley authored
PKCS#1 v2.1 section 7.1.1 says that the result of an OAEP encryption is "an octet string of length $k$". Since we didn't left-pad the result it was previously possible for the result to be smaller when the most-significant byte was zero. Fixes #1519. R=rsc CC=golang-dev https://golang.org/cl/4175059
-
Robert Griesemer authored
R=r, r2 CC=golang-dev https://golang.org/cl/4184053
-
Gustavo Niemeyer authored
Flags defined in the testing package may conflict with real flags defined in the main package, or in any other imported package. This change makes them less likely to be used for other purposes. R=r, rsc, r2 CC=golang-dev https://golang.org/cl/4167055
-
- 17 Feb, 2011 14 commits
-
-
Wei Guangjing authored
R=rsc, brainman CC=golang-dev https://golang.org/cl/4182061
-
Nigel Tao authored
R=rsc CC=golang-dev https://golang.org/cl/4169058
-
Russ Cox authored
Fixes #53. (again) R=agl1 CC=golang-dev https://golang.org/cl/4167054
-
Russ Cox authored
Almost the same definition as Go identifier names. (Leading digits are allowed.) Fixes #1520. R=r, r2 CC=golang-dev https://golang.org/cl/4173061
-
Russ Cox authored
Fixes #1526. R=ken2 CC=golang-dev https://golang.org/cl/4190051
-
Russ Cox authored
I have no idea how I meant to complete that sentence. R=r, r2 CC=golang-dev https://golang.org/cl/4191046
-
Russ Cox authored
R=r, r2 CC=golang-dev https://golang.org/cl/4173060
-
Albert Strasheim authored
R=agl1, rsc CC=golang-dev https://golang.org/cl/4170056
-
Andrew Gerrand authored
Fixes #1229. R=rsc CC=golang-dev https://golang.org/cl/4178048
-
Rob Pike authored
that should look in godoc. R=rsc, dsymonds CC=golang-dev https://golang.org/cl/4192041
-
Rob Pike authored
untested. Fixes #1523. R=rsc CC=golang-dev https://golang.org/cl/4171057
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/4172051
-
Alex Brainman authored
R=golang-dev, rsc, hector CC=golang-dev, mattn https://golang.org/cl/4180052
-
Alex Brainman authored
R=golang-dev, r2 CC=golang-dev https://golang.org/cl/4184051
-
- 16 Feb, 2011 13 commits
-
-
Nigel Tao authored
I'm not sure if it's 100% correct wrt the HTML5 specification, but the test suite has plenty of HTML comment test cases, and we'll shake out any tokenization bugs as the parser improves its coverage. R=gri CC=golang-dev https://golang.org/cl/4186055
-
Jeff R. Allen authored
Make compile-time string const comparison match semantics of runtime.cmpstring. Fixes #1515. R=rsc CC=golang-dev, rog https://golang.org/cl/4172049
-
Dave Cheney authored
notes: Darwin is very particular about joining a multicast group if the listneing socket is not created in "udp4" mode, the other supported OS's are more flexible. A simple example sets up a socket to listen on the mdns/bonjour group 224.0.0.251:5353 // ensure the sock is udp4, and the IP is a 4 byte IPv4 socket, err := net.ListenUDP("udp4", &net.UDPAddr { IP: net.IPv4zero, // currently darwin will not allow you to bind to // a port if it is already bound to another process Port: 5353, }) if err != nil { log.Exitf("listen %s", err) } defer socket.Close() err = socket.JoinGroup(net.IPv4(224, 0, 0, 251)) if err != nil { log.Exitf("join group %s", err) } R=adg, rsc CC=golang-dev https://golang.org/cl/4066044
-
Mikio Hara authored
R=rsc CC=golang-dev https://golang.org/cl/4172045
-
Olivier Antoine authored
R=rsc CC=golang-dev https://golang.org/cl/4129042
-
Russ Cox authored
Also sort name lists. R=r, r2 CC=golang-dev https://golang.org/cl/4191044
-
Gustavo Niemeyer authored
R=rsc, rog, r CC=golang-dev https://golang.org/cl/3775048
-
Russ Cox authored
R=r, r2 CC=golang-dev https://golang.org/cl/4175053
-
Yasuhiro Matsumoto authored
Fixes #53. R=agl1, jacek.masiulaniec, adg, rsc, agl CC=golang-dev https://golang.org/cl/3794041
-
Rob Pike authored
R=rsc, gri, rsc1, bsiegert CC=golang-dev https://golang.org/cl/4183053
-
Rob Pike authored
Some significant improvements; e.g. pidigits goes from 8.33 to 6.37 Also add gccgo for regex-dna. R=rsc CC=golang-dev https://golang.org/cl/4160056
-
Russ Cox authored
Bitmaps were not being updated safely. Depends on 4188053. Fixes #1504. May fix issue 1479. R=r, r2 CC=golang-dev https://golang.org/cl/4184048
-
Russ Cox authored
implement runtime.casp on amd64. keep simultaneous panic messages separate. R=r CC=golang-dev https://golang.org/cl/4188053
-