summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-11-06expand "this is not just mercurial" sectionweekly.2009-11-06Russ Cox
R=r CC=go-dev http://go/go-review/1024008
2009-11-06contribute.htmlRuss Cox
R=r, iant CC=go-dev http://go/go-review/1022007
2009-11-06require gofmt for all $GOROOT/src/.../*.go.Russ Cox
try harder to post messages to rietveld. R=gri, r CC=go-dev http://go/go-review/1024006
2009-11-06crypto/x509: build fix for 32-bitAdam Langley
TBR=rsc R=rsc CC=go-dev http://go/go-review/1024007
2009-11-06Fix add-back division test so that it triggers the add-back case onAdam Langley
both 64 and 32 bit platforms. Also, uncomment some tests that were still commented out from debugging. R=gri, rsc CC=go-dev http://go/go-review/1026003
2009-11-05gofmt -w miscRobert Griesemer
R=rsc http://go/go-review/1025004
2009-11-05 make 5g executables run on android/arm hardware. change OABIKai Backman
usage to EABI. go/test: passes 85% (296/347) on random android phone. R=rsc http://go/go-review/1024003
2009-11-05gofmt src/cmd/goyaccRobert Griesemer
(with this change: gofmt -l src/cmd/ | wc is 0 0 0) R=ken, rsc http://go/go-review/1024005
2009-11-05gofmt'ed src/cmdRobert Griesemer
R=rsc http://go/go-review/1024004
2009-11-05- fix elf.go manually so it is idempotent for gofmtRobert Griesemer
- with this change, `gofmt -l src/pkg | wc` is 0 R=rsc http://go/go-review/1025002
2009-11-05missing piece gofmt'ed in reflectRobert Griesemer
R=r, rsc http://go/go-review/1025001
2009-11-05gofmt'ed more stragglersRobert Griesemer
R=rsc http://go/go-review/1019004
2009-11-05gofmt'ed bigRobert Griesemer
R=agl http://go/go-review/1022003
2009-11-05gofmt'ed various stragglersRobert Griesemer
R=rsc http://go/go-review/1022002
2009-11-05gofmt'ed more stragglersRobert Griesemer
(now down to a handfull of files in pkg) R=rsc http://go/go-review/1019006
2009-11-05fix UTF-8 upload bugRuss Cox
TBR=r http://go/go-review/1026001
2009-11-05gofmt the last outstanding files in src/pkgRobert Griesemer
- added a list of issues to printer/nodes.go R=rsc http://go/go-review/1024002
2009-11-05gofmt'ed missing regexp fileRobert Griesemer
(one-line functions will be re-established once we have all formatted uniformly) R=r http://go/go-review/1023004
2009-11-05manual fix for better gofmt resultRobert Griesemer
R=r http://go/go-review/1019005
2009-11-05- gofmt'ing of some stragglers, now with correct comment indentationRobert Griesemer
in special cases - re-gofmt'ing of some files that are now improved R=r, rsc http://go/go-review/1023003
2009-11-05fix a comment formatting bug:Robert Griesemer
- this ensures better comment formatting in template.go and codec_test.go - it affects only 2 files of all files that have been gofmt'ed already, see separate CL (it fixes the same issue in those files) R=rsc http://go/go-review/1023002
2009-11-05crypto/tls (part 6/5)Adam Langley
Results of running gofmt again. R=rsc CC=go-dev http://go/go-review/1022006
2009-11-05fix broken linkRob Pike
R=rsc, iant CC=go-dev http://go/go-review/1019003
2009-11-05crypto/tls (part 5/5)Adam Langley
Make RSA and X509 build by using big. (This involves commenting out key generation for now since I haven't written Miller-Rabin in big yet.) Add entries to the Makefile. R=rsc CC=go-dev http://go/go-review/1022005
2009-11-05crypto/tls (part 4/5)Adam Langley
R=rsc CC=go-dev http://go/go-review/1019002
2009-11-05Cleaned up gccgo error messages require minor adjustment toIan Lance Taylor
test. const1.go:27: error: integer constant overflow const1.go:29: error: integer constant overflow const1.go:30: error: integer constant overflow const1.go:31: error: integer constant overflow const1.go:32: error: integer constant overflow const1.go:33: error: integer constant overflow const1.go:33: error: integer constant overflow const1.go:34: error: integer constant overflow const1.go:37: error: integer constant overflow const1.go:38: error: integer constant overflow const1.go:40: error: integer constant overflow const1.go:41: error: integer constant overflow const1.go:43: error: integer constant overflow const1.go:44: error: integer constant overflow const1.go:45: error: integer constant overflow const1.go:48: error: integer constant overflow const1.go:50: error: integer constant overflow const1.go:51: error: integer constant overflow const1.go:52: error: integer constant overflow const1.go:53: error: integer constant overflow const1.go:55: error: integer constant overflow const1.go:56: error: division by zero const1.go:59: error: floating point constant overflow const1.go:61: error: floating point constant overflow const1.go:62: error: division by zero const1.go:47: error: integer constant overflow const1.go:49: error: integer constant overflow const1.go:60: error: floating point constant overflow const1.go:68: error: argument 1 has incompatible type (cannot use type int8 as type int) const1.go:69: error: argument 1 has incompatible type (cannot use type int8 as type int) const1.go:70: error: argument 1 has incompatible type (cannot use type uint8 as type int) const1.go:72: error: argument 1 has incompatible type (cannot use type float32 as type int) const1.go:73: error: argument 1 has incompatible type (cannot use type float as type int) const1.go:74: error: floating point constant truncated to integer const1.go:76: error: argument 1 has incompatible type (cannot use type float64 as type int) const1.go:77: error: argument 1 has incompatible type const1.go:78: error: argument 1 has incompatible type R=rsc http://go/go-review/1022001
2009-11-05gofmt'ed parts of goRobert Griesemer
R=rsc http://go/go-review/1023001
2009-11-05big: add Div, Mod, Exp, GcdExt and several other fixes.Adam Langley
R=gri, rsc CC=go-dev http://go/go-review/1017036
2009-11-05crypto/tls (part 3)Adam Langley
(With hindsight, record_process might have been designed wrong, but it works for now. It'll get redrawn when client support is added.) R=rsc CC=r http://go/go-review/1018032
2009-11-05gofmt-ify io, json, runtime, encodingRobert Griesemer
R=rsc http://go/go-review/1017056
2009-11-05gofmt'ed godefsRobert Griesemer
R=rsc http://go/go-review/1020001
2009-11-05gofmt'ed debugRobert Griesemer
(excluding debug/gosym/symtab.go which has a small issue) R=rsc http://go/go-review/1019001
2009-11-05gofmt'ed 6l 8l cgoRobert Griesemer
R=r http://go/go-review/1020002
2009-11-05gofmt-ify strings, templateRobert Griesemer
R=r http://go/go-review/1018064
2009-11-05add information comparing the compiler implementations to the installation ↵Rob Pike
document R=rsc CC=go-dev http://go/go-review/1018063
2009-11-05gofmt-ify gobRobert Griesemer
(the one-line struct types used in composite literals will become one line again in another cleanup round; don't worry about them now) R=r http://go/go-review/1016056
2009-11-05codereview: new commandsRuss Cox
* clpatch * download * submit, on behalf of clpatch stir hgpatch to fix a few bugs R=r CC=go-dev http://go/go-review/1016051
2009-11-05gofmt-ify 4s, iterableRobert Griesemer
R=rsc http://go/go-review/1016055
2009-11-05gofmt-ify drawRobert Griesemer
R=rsc http://go/go-review/1017055
2009-11-05gofmt-ify evalRobert Griesemer
R=rsc http://go/go-review/1016054
2009-11-05gofmt-ify ogleRobert Griesemer
R=rsc http://go/go-review/1016053
2009-11-05gofmt-ify naclRobert Griesemer
R=rsc http://go/go-review/1018062
2009-11-05gofmt-ify reflectRobert Griesemer
- the single line structs can be fixed in another round R=rsc http://go/go-review/1016052
2009-11-052nd attempt: no noIndent for string listsRobert Griesemer
- slightly better output in general - extra indentation where we could do without (however that seems better for now that not having the indentation where it is needed) - no information is lost, so a future better approach can fix these places up again R=rsc http://go/go-review/1017050
2009-11-05add a place-holder link for the hour-long videoRob Pike
R=rsc CC=go-dev http://go/go-review/1017054
2009-11-05update the text on the landing page.Rob Pike
R=agl, rsc CC=go-dev http://go/go-review/1017053
2009-11-05forgot a piece of debuggingKen Thompson
in previous change R=rsc http://go/go-review/1017052
2009-11-05same speedup as 6lKen Thompson
R=rsc http://go/go-review/1016050
2009-11-05godoc: style update.Adam Langley
R=r, rsc CC=go-dev http://go/go-review/1017051
2009-11-05gofmt-ify syscallRobert Griesemer
(replacement for CL 1018053) R=r http://go/go-review/1017047