- 20 May, 2011 5 commits
-
-
Adam Langley authored
This change adds a function for generating new Entities and inchoate support for reserialising Entities. R=bradfitz, r, bradfitz CC=golang-dev https://golang.org/cl/4551044
-
Brad Fitzpatrick authored
Fixes #1823 R=golang-dev, adg, robert.hencke CC=golang-dev https://golang.org/cl/4530054
-
Andrew Gerrand authored
R=golang-dev, iant CC=golang-dev https://golang.org/cl/4551051
-
Andrew Gerrand authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4547056
-
Robert Griesemer authored
This appears to have been a long-standing formatting bug. The test cases has misformatted golden files. Applied gofmt -w src misc . Fixes #1839. R=iant CC=golang-dev https://golang.org/cl/4515113
-
- 19 May, 2011 5 commits
-
-
Robert Griesemer authored
R=iant, iant2 CC=golang-dev https://golang.org/cl/4515114
-
Gustavo Niemeyer authored
This enables customizing the behavior of formatters with logic such as {"template"|import} or even {Field1 Field2 "%.2f 0x%X"|printf} Thanks to Roger Peppe for some debate on this. R=golang-dev, r, r CC=golang-dev https://golang.org/cl/4536059
-
David Symonds authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/4539067
-
Anthony Martin authored
This code is extracted from crypto/rsa with a few variables renamed and a comment fixed. R=agl, rsc, agl CC=golang-dev https://golang.org/cl/4446068
-
Brad Fitzpatrick authored
It's documented as such, but it was never wired up after Transport went in and Head was fixed. If people don't want redirects, that's what RoundTripper/ Transport are for. Or a custom redirect policy. R=golang-dev, kevlar CC=golang-dev https://golang.org/cl/4526065
-
- 18 May, 2011 12 commits
-
-
Mikio Hara authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4535078
-
Nigel Tao authored
Before: jpeg.BenchmarkEncodeRGBOpaque ... 23.29 MB/s jpeg.BenchmarkEncodeRGBOpaque ... 23.27 MB/s jpeg.BenchmarkEncodeRGBOpaque ... 23.17 MB/s After: jpeg.BenchmarkEncodeRGBOpaque ... 23.42 MB/s jpeg.BenchmarkEncodeRGBOpaque ... 23.34 MB/s jpeg.BenchmarkEncodeRGBOpaque ... 23.33 MB/s R=rsc CC=golang-dev https://golang.org/cl/4538077
-
Jonathan Allie authored
(DSA with SHA1, DSA with SHA256). Cleanup getSignatureFromOID function. R=agl, agl, rsc CC=golang-dev https://golang.org/cl/4530055
-
Robert Griesemer authored
R=r, rsc CC=golang-dev https://golang.org/cl/4556041
-
Russ Cox authored
R=golang-dev, mattn.jp, jcowgar, iant CC=golang-dev https://golang.org/cl/4535080
-
Robert Griesemer authored
R=r CC=golang-dev https://golang.org/cl/4536065
-
Nigel Tao authored
R=rsc, r CC=golang-dev https://golang.org/cl/4536069
-
Mikio Hara authored
R=golang-dev, devon.odell CC=golang-dev https://golang.org/cl/4552051
-
Robert Hencke authored
R=ality, bradfitz, rsc, dsymonds, adg, qyzhai, dchest CC=golang-dev https://golang.org/cl/4536063
-
Wei Guangjing authored
R=alex.brainman, rsc CC=golang-dev, vcc.163 https://golang.org/cl/4532069
-
Brad Fitzpatrick authored
R=mattn.jp, rsc CC=golang-dev https://golang.org/cl/4528077
-
Mikio Hara authored
R=golang-dev, dave, rsc CC=golang-dev https://golang.org/cl/4553042
-
- 17 May, 2011 12 commits
-
-
Nigel Tao authored
Also add grayscale test cases for image/decode_test. R=r CC=golang-dev https://golang.org/cl/4526063
-
Robert Griesemer authored
Fixes #1842. R=r CC=golang-dev https://golang.org/cl/4517081
-
Brad Fitzpatrick authored
R=golang-dev, gary.burd, rsc CC=golang-dev https://golang.org/cl/4526062
-
Roger Peppe authored
Speeds up setting individual bits by ~75%, useful when using big.Int as a bit set. R=gri, rsc CC=golang-dev https://golang.org/cl/4538053
-
Robert Griesemer authored
- add Data field to ast.Object - for package objects, the Data field holds the package scope - resolve several TODOs R=rsc CC=golang-dev https://golang.org/cl/4538069
-
Rob Pike authored
When GOMAXPROCS>1, the testing framework runs in parallel with the test itself and may do a small number of allocations, so allow the "noAllocs" condition to admit just a few. Fixes #1782. R=rsc CC=golang-dev, rsc https://golang.org/cl/4533041
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/4515092
-
Robert Hencke authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4539063
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/4516057
-
Mikio Hara authored
Add seven methods to IP struct: IsUnspecified, IsLoopback, IsMulticast, IsInterfaceLocalMulticast, IsLinkLocalMulticast, IsLinkLocalUnicast and IsGlobalUnicast. R=bradfitz, rsc CC=golang-dev https://golang.org/cl/4515083
-
Alex Brainman authored
Fixes #1830. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4526060
-
Anthony Martin authored
The code for converting negative floats was incorrectly loading an FP control word from the stack without ever having stored it there. Thanks to Lars Pensjö for reporting this bug. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4515091
-
- 16 May, 2011 6 commits
-
-
Rob Pike authored
R=nigeltao CC=golang-dev https://golang.org/cl/4552042
-
Rob Pike authored
R=nigeltao CC=golang-dev https://golang.org/cl/4535073
-
Gary Burd authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4518061
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/4519064
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/4551042
-
Mikio Hara authored
This CL will help to make an adaptive address family selection possible when an any address family, vague network string such as "ip", "tcp" or "udp" is passed to Dial and Listen API. Fixes #1769. R=bradfitz, rsc CC=golang-dev https://golang.org/cl/4438066
-