- 22 Feb, 2011 4 commits
-
-
Rob Pike authored
Other than maybe cleaning the code up a bit, this has little practical effect for now, but lays the foundation for remembering the method set of a type, which can be expensive. R=rsc CC=golang-dev https://golang.org/cl/4193041
-
Robert Griesemer authored
Fixes #1543. R=rsc, r2 CC=golang-dev https://golang.org/cl/4169068
-
Rob Pike authored
It was observed that the interface was generic enough that several other types implemented it too. Fixes #1530. R=rsc CC=golang-dev https://golang.org/cl/4169063
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/4169065
-
- 21 Feb, 2011 5 commits
-
-
Padraig Kitterick authored
Removed a redefinition of the request URL which is never used and redundant checking of the return value from send(). R=golang-dev, adg CC=golang-dev https://golang.org/cl/4184061
-
Andrew Gerrand authored
R=dsymonds CC=golang-dev https://golang.org/cl/4186065
-
David Symonds authored
R=rsc, r2 CC=golang-dev https://golang.org/cl/4167064
-
Mikael Tillenius authored
Added support for reading images with grayscale + alpha and for images with depth 1, 2 or 4. R=nigeltao CC=golang-dev https://golang.org/cl/4174053
-
Nigel Tao authored
R=dsymonds CC=golang-dev https://golang.org/cl/4179063
-
- 20 Feb, 2011 1 commit
-
-
Luuk van Dijk authored
R=rsc, r2 CC=golang-dev https://golang.org/cl/4183060
-
- 19 Feb, 2011 2 commits
-
-
Rob Pike authored
pointer to interface type. R=golang-dev, niemeyer, gri CC=golang-dev https://golang.org/cl/4173067
-
Adam Langley authored
R=rsc CC=golang-dev https://golang.org/cl/4178065
-
- 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 1 commit
-
-
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
-