- 29 Nov, 2011 8 commits
-
-
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 20 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
-
Dave Cheney authored
openChan was only being called by NewSession, Dial has its own version. R=gustav.paul, agl, rsc CC=golang-dev https://golang.org/cl/5435071
-
Adam Langley authored
Previously we were using the map iteration order to set the order of the cipher suites in the ClientHello. R=bradfitz CC=golang-dev https://golang.org/cl/5440048
-
Rob Pike authored
- allow Lookup to work on uninitialized templates - fix bug in add: can't error after parser is stopped - add Add method for html/template R=adg, rogpeppe, r, rsc CC=golang-dev https://golang.org/cl/5436080
-
Christopher Wedgwood authored
R=rsc, gri CC=golang-dev https://golang.org/cl/5445044
-
Christopher Wedgwood authored
R=rsc, gri CC=golang-dev https://golang.org/cl/5441048
-
Christopher Wedgwood authored
R=r, gri CC=golang-dev https://golang.org/cl/5441047
-
Dave Cheney authored
R=huin, agl, gustav.paul, cw CC=golang-dev https://golang.org/cl/5399044
-
Rémy Oudompheng authored
The wrong value made Nconv() show "1" for node "-1", and "2" from node "2+3". Fixes #2452. R=gri, lvd, rsc CC=golang-dev, remy https://golang.org/cl/5435064
-
Dave Cheney authored
Thanks for Ke Lan for the initial report and investigation. R=agl, gustav.paul, tg8866, rsc CC=golang-dev https://golang.org/cl/5443044
-
Maxim Pimenov authored
reset xmethod during copytype Fixes #2497 R=rsc, dvyukov CC=golang-dev https://golang.org/cl/5441045
-
Brad Fitzpatrick authored
R=rsc CC=golang-dev https://golang.org/cl/5442045
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5443047
-
Brad Fitzpatrick authored
R=rsc CC=golang-dev https://golang.org/cl/5433059
-
Gustav Paul authored
R=dave, agl, rsc, golang-dev CC=golang-dev https://golang.org/cl/5431089
-
Gustavo Niemeyer authored
Fixes #2493. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5433079
-
Charles L. Dorian authored
Also note the special case of -0.0. R=rsc, golang-dev, gri CC=golang-dev https://golang.org/cl/5435084
-
- 27 Nov, 2011 4 commits
-
-
Andrew Balholm authored
Pass tests3.dat, test 20: <!doctype html><nobr><nobr><nobr> | <!DOCTYPE html> | <html> | <head> | <body> | <nobr> | <nobr> | <nobr> Also pass tests through test 22: <!doctype html><html><body><p><table></table></body></html> R=nigeltao CC=golang-dev https://golang.org/cl/5438056
-
Michael T. Jones authored
This change adds the second aspect to the conversion code, the use of large divisiors (powers of big base) to greatly speed up the divsion of large numbers. Speedups of 30x are common in the large cases. Also includes new tests and tuning code for the key internal parameters. R=gri CC=golang-dev https://golang.org/cl/5438058
-
Gustav Paul authored
According to http://www.ietf.org/rfc/rfc4254.txt most channel messages contain the channel id of the recipient channel, not the sender id. This allows the recipient connection multiplexer to route the message to the correct channel. This changeset fixes several messages that incorrectly send the local channel id instead of the remote channel's id. While sessions were being created and closed in sequence channels in the channel pool were freed and reused on the server side of the connection at the same rate as was done on the client, so the channel local and remote channel ids always corresponded. As soon as I had concurrent sessions on the same clientConn the server started to complain of 'uknown channel id N' where N is the local channel id, which is actually paired with server channel id K. R=golang-dev, dave, rsc, agl CC=golang-dev https://golang.org/cl/5433063
-
Andrew Balholm authored
Pass tests3.dat, test 12: <!DOCTYPE html><HTML><META><HEAD></HEAD></HTML> | <!DOCTYPE html> | <html> | <head> | <meta> | <body> Also pass tests through test 19: <!DOCTYPE html><html><head></head><body><ul><li><div><p><li></ul></body></html> R=nigeltao CC=golang-dev https://golang.org/cl/5436069
-
- 26 Nov, 2011 2 commits
-
-
Rob Pike authored
Calling it Template makes it clumsy to embed the type, which html/template depends on. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5432079
-
Alex Brainman authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5432071
-
- 25 Nov, 2011 6 commits
-
-
Benny Siegert authored
IIRC, package sql used to be called db. There was one occurrence of the old name in a comment. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5431075
-
Brad Fitzpatrick authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/5432076
-
Dmitriy Vyukov authored
Due to data structure corruption, some timers could not be removed. Fixes #2495. R=golang-dev, adg CC=golang-dev, mdbrown https://golang.org/cl/5437060
-
Andrew Gerrand authored
R=nigeltao CC=golang-dev https://golang.org/cl/5437061
-
Andrew Gerrand authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5431048
-
Rob Pike authored
Cloned template copied the root template incorrectly. Add test of self-consistency. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5436063
-