- 01 Dec, 2011 11 commits
-
-
Adam Langley authored
This is the result of running `gofix -r hashsum` over the tree, changing the hash function implementations by hand and then fixing a couple of instances where gofix didn't catch something. The changed implementations are as simple as possible while still working: I'm not trying to optimise in this CL. R=rsc, cw, rogpeppe CC=golang-dev https://golang.org/cl/5448065
-
Adam Langley authored
This fix adds an output argument to hash.Sum. Tree changes in https://golang.org/cl/5448065 R=rsc CC=golang-dev https://golang.org/cl/5450051
-
Rob Pike authored
Makes it clear we're adding exactly one tree and creating a new template for it. R=rsc CC=golang-dev https://golang.org/cl/5448077
-
Luuk van Dijk authored
R=rsc CC=golang-dev https://golang.org/cl/5451050
-
Dave Cheney authored
R=gustav.paul, cw, agl, rsc, n13m3y3r CC=golang-dev https://golang.org/cl/5433080
-
David Symonds authored
R=adg CC=golang-dev https://golang.org/cl/5447060
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/5448068
-
Andrew Gerrand authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5448067
-
Alex Brainman authored
R=rsc CC=golang-dev https://golang.org/cl/5440071
-
Rob Pike authored
The problem is that execution can modify the template, so it needs interlocking to have the same thread-safe guarantee as text/template. Fixes #2439. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5450056
-
Andrew Balholm authored
Pass the tests in tests4.dat. R=nigeltao CC=golang-dev https://golang.org/cl/5447055
-
- 30 Nov, 2011 16 commits
-
-
Joel Sing authored
Fixes #2509. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5451055
-
Rob Pike authored
Not quite done yet but enough is here to review. Embedding is eliminated so clients can't accidentally reach methods of text/template.Template that would break the invariants. TODO later: Add and Clone are unimplemented. TODO later: address issue 2349 R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/5434077
-
Dave Cheney authored
Remove the accidentally exported net.Listener ««« original CL description exp/ssh: remove unused forwarding methods in Server Listener R=agl, rsc CC=golang-dev https://golang.org/cl/5436056 »»» R=agl, rsc CC=golang-dev https://golang.org/cl/5437090
-
Ian Lance Taylor authored
fixes #2506 R=rsc, iant CC=golang-dev https://golang.org/cl/5440066
-
Russ Cox authored
TBR=brainman CC=golang-dev https://golang.org/cl/5447057
-
Charles L. Dorian authored
Sincos via sincos.go is 35.4 ns/op, via sincos_amd64.s is 37.4 ns/op on 2.53 GHz Intel Core 2 Duo (Mac OS X). R=rsc, golang-dev CC=golang-dev https://golang.org/cl/5447045
-
Russ Cox authored
This is not the right fix, but it is what used to happen before the FileInfo conversion, and it should get the build working again (at least that part). TBR=brainman CC=golang-dev https://golang.org/cl/5434090
-
Russ Cox authored
time.Parse uses time.Local if it has the right zone offset, otherwise it calls time.FixedZone. The test's use of reflect.DeepEqual meant that the test expected time.FixedZone always, failing when the local time zone really would have used -0700 for that time. The fix is to format the time to display only the pieces we intend to test. R=golang-dev, agl, iant CC=golang-dev https://golang.org/cl/5437088
-
Russ Cox authored
TBR=brainman CC=golang-dev https://golang.org/cl/5449048
-
Roger Peppe authored
This code would panic: z := big.NewInt(1) z.SetBit(big.NewInt(0), 2, 1) if z.Cmp(big.NewInt(1<<2)) != 0 { panic("fail") } R=rsc, gri CC=golang-dev https://golang.org/cl/5437081
-
Russ Cox authored
R=golang-dev, r, r, gri, bradfitz, iant, iant, nigeltao, n13m3y3r CC=golang-dev https://golang.org/cl/5416060
-
Russ Cox authored
R=bradfitz, gri, r, dsymonds CC=golang-dev https://golang.org/cl/5390042
-
Russ Cox authored
R=r, bradfitz, gri, dsymonds, iant CC=golang-dev https://golang.org/cl/5392041
-
Nigel Tao authored
R=andybalholm CC=golang-dev https://golang.org/cl/5440064
-
Andrew Balholm authored
Pass tests5.dat, test 10: <p><xmp></xmp> | <html> | <head> | <body> | <p> | <xmp> Also pass the remaining tests in tests5.dat. R=nigeltao CC=golang-dev https://golang.org/cl/5440062
-
Andrew Balholm authored
Pass tests5.dat, test 4: <iframe> <!---> </iframe>x | <html> | <head> | <body> | <iframe> | " <!---> " | "x" Also pass tests through test 9: <style> <!</-- </style>x R=nigeltao CC=golang-dev https://golang.org/cl/5450044
-
- 29 Nov, 2011 9 commits
-
-
David Symonds authored
R=gri, rsc CC=golang-dev https://golang.org/cl/5327053
-
Gustav Paul authored
Exec() has been renamed to Run() in keeping with the os/exec API. Added func (*Session) Start(cmd string) which starts a remote process but unlike Run() doesn't wait for it to finish before returning. Run() has been refactored to use Start internally. Its really just a refactoring, no new code but some extra functionality was won. Also added func (*Session) Signal(sig signal) which sends a UNIX signal to a remote process. This is espcially useful in conjunction with Start() as the two allow you to start a remote process, monitor its stdout/stderr, and send it a TERM/HUP/etc signal when you want it to close. R=dave, rsc, agl, bradfitz, n13m3y3r, gustavo CC=golang-dev https://golang.org/cl/5437058
-
Joel Sing authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5437079
-
Luuk van Dijk authored
R=rsc CC=golang-dev https://golang.org/cl/5447043
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5441053
-
Nigel Tao authored
R=andybalholm CC=golang-dev https://golang.org/cl/5445049
-
Robert Hencke authored
R=golang-dev CC=golang-dev https://golang.org/cl/5445052
-
Alex Brainman authored
R=golang-dev, vcc.163 CC=golang-dev https://golang.org/cl/5445051
-
Andrew Balholm authored
Pass tests3.dat, test 23: <p><table></table> | <html> | <head> | <body> | <p> | <table> R=nigeltao CC=golang-dev https://golang.org/cl/5446043
-
- 28 Nov, 2011 4 commits
-
-
Alex Brainman authored
Fixes #2251. R=golang-dev, rsc CC=golang-dev, jp https://golang.org/cl/5440050
-
Andrew Gerrand authored
goinstall: better error handling and reporting R=r, r, rsc, mattn.jp CC=golang-dev https://golang.org/cl/5421051
-
Russ Cox authored
This should make CL 5431046 a little simpler. R=ken2 CC=golang-dev https://golang.org/cl/5444048
-
Charles L. Dorian authored
R=rsc, golang-dev, r CC=golang-dev https://golang.org/cl/5445046
-