- 15 Oct, 2010 1 commit
-
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/2525041
-
- 14 Oct, 2010 1 commit
-
-
Rob Pike authored
Fixes #1195. R=rsc CC=golang-dev https://golang.org/cl/2504043
-
- 13 Oct, 2010 2 commits
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/2485041
-
Rob Pike authored
Use a bytes.Buffer in log writing instead of string concatenation. Should reduce the number of allocations significantly. R=rsc, r2 CC=golang-dev https://golang.org/cl/2417042
-
- 12 Oct, 2010 1 commit
-
-
Rob Pike authored
New logging interface simplifies and generalizes. 1) Loggers now have only one output. 2) log.Stdout, Stderr, Crash and friends are gone. Logging is now always to standard error by default. 3) log.Panic* replaces log.Crash*. 4) Exiting and panicking are not part of the logger's state; instead the functions Exit* and Panic* simply call Exit or panic after printing. 5) There is now one 'standard logger'. Instead of calling Stderr, use Print etc. There are now triples, by analogy with fmt: Print, Println, Printf What was log.Stderr is now best represented by log.Println, since there are now separate Print and Println functions (and methods). 6) New functions SetOutput, SetFlags, and SetPrefix allow global editing of the standard logger's properties. This is new functionality. For instance, one can call log.SetFlags(log.Lshortfile|log.Ltime|log.Lmicroseconds) to get all logging output to show file name, line number, and time stamp. In short, for most purposes log.Stder...
-
- 24 Sep, 2010 1 commit
-
-
Russ Cox authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/2273042
-
- 12 Sep, 2010 1 commit
-
-
Russ Cox authored
Fixes #1099. R=ken2, r CC=golang-dev https://golang.org/cl/2147047
-
- 11 Sep, 2010 1 commit
-
-
Rob Pike authored
1) hack regalloc to leave R9 (m) and R10 (g) alone. the real fix is tricker, but this gets us running 2) fix up the few places in the package sources that the shortage of registers affects, by simplifying some expressions. all of this should be reverted when the right fix is in. Fixes #1084. R=rsc CC=golang-dev https://golang.org/cl/2132046
-
- 16 Mar, 2010 1 commit
-
-
Robert Griesemer authored
- gofmt -w src misc - only manually modified file: src/pkg/go/printer/nodes.go R=rsc CC=golang-dev, r https://golang.org/cl/606041
-
- 01 Feb, 2010 1 commit
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/197043
-
- 15 Dec, 2009 1 commit
-
-
Robert Griesemer authored
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 3rd set of files. R=rsc CC=golang-dev https://golang.org/cl/180048
-
- 11 Dec, 2009 1 commit
-
-
Yves Junqueira authored
R=golang-dev, rsc https://golang.org/cl/157168
-
- 20 Nov, 2009 1 commit
-
-
Russ Cox authored
R=r, gri CC=golang-dev https://golang.org/cl/156115
-
- 10 Nov, 2009 1 commit
-
-
Robert Griesemer authored
rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041
-
- 09 Nov, 2009 1 commit
-
-
Robert Griesemer authored
R=rsc, r http://go/go-review/1025029
-
- 07 Nov, 2009 1 commit
-
-
David Symonds authored
R=rsc CC=go-dev http://go/go-review/1026014
-
- 06 Nov, 2009 1 commit
-
-
Robert Griesemer authored
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
-
- 09 Oct, 2009 1 commit
-
-
Rob Pike authored
R=rsc DELTA=2 (0 added, 0 deleted, 2 changed) OCL=35526 CL=35540
-
- 08 Oct, 2009 1 commit
-
-
Russ Cox authored
R=gri OCL=35485 CL=35488
-
- 07 Oct, 2009 1 commit
-
-
Russ Cox authored
R=gri DELTA=1359 (138 added, 32 deleted, 1189 changed) OCL=35408 CL=35420
-
- 15 Sep, 2009 1 commit
-
-
Russ Cox authored
the last round omitted := range and only checked 1 out of N vars in a multi-var := R=r OCL=34624 CL=34638
-
- 13 Aug, 2009 1 commit
-
-
Kai Backman authored
R=rsc APPROVED=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=33209 CL=33227
-
- 09 Jun, 2009 1 commit
-
-
Rob Pike authored
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102
-
- 16 May, 2009 1 commit
-
-
Rob Pike authored
R=rsc DELTA=7 (0 added, 0 deleted, 7 changed) OCL=28947 CL=28950
-
- 08 May, 2009 2 commits
- 06 May, 2009 1 commit
-
-
Rob Pike authored
no substantive changes except: - new Makefiles, all auto-generated - go/src/lib/Makefile has been extensively edited R=rsc OCL=28310 CL=28310
-
- 31 Mar, 2009 1 commit
-
-
David Symonds authored
R=r APPROVED=r DELTA=1 (0 added, 0 deleted, 1 changed) OCL=26926 CL=26928
-
- 05 Mar, 2009 1 commit
-
-
Rob Pike authored
R=rsc DELTA=26 (17 added, 1 deleted, 8 changed) OCL=25731 CL=25734
-
- 03 Mar, 2009 1 commit
-
-
Russ Cox authored
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
-
- 13 Feb, 2009 1 commit
-
-
Russ Cox authored
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
-
- 26 Jan, 2009 2 commits