Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-15 | Imported Upstream version 1.4upstream/1.4 | Tianon Gravi | 17 | -3251/+0 | |
2014-06-19 | Imported Upstream version 1.3upstream/1.3 | Michael Stapelberg | 7 | -23/+146 | |
2013-12-03 | Imported Upstream version 1.2upstream/1.2 | Michael Stapelberg | 6 | -10/+43 | |
2013-05-14 | Imported Upstream version 1.1upstream/1.1 | Michael Stapelberg | 2 | -0/+11 | |
2013-03-04 | Imported Upstream version 1.1~hg20130304upstream/1.1_hg20130304 | Michael Stapelberg | 11 | -95/+407 | |
2012-06-14 | Imported Upstream version 1.0.2upstream/1.0.2 | Ondřej Surý | 3 | -3/+32 | |
2012-05-02 | Imported Upstream version 1.0.1upstream/1.0.1 | Ondřej Surý | 2 | -0/+5 | |
2012-04-06 | Imported Upstream version 1upstream/1 | Ondřej Surý | 16 | -349/+945 | |
2011-09-13 | Imported Upstream version 60upstream/60 | Ondřej Surý | 13 | -0/+2142 | |
2011-09-13 | Imported Upstream version 60 | Ondřej Surý | 13 | -2079/+0 | |
2011-08-03 | Imported Upstream version 59upstream/59 | Ondřej Surý | 3 | -6/+2 | |
2011-06-30 | Imported Upstream version 58upstream/58 | Ondřej Surý | 7 | -76/+85 | |
2011-04-28 | Imported Upstream version 2011.04.27upstream/2011.04.27 | Ondřej Surý | 2 | -5/+4 | |
2011-04-26 | Imported Upstream version 2011.04.13upstream/2011.04.13 | Ondřej Surý | 8 | -66/+399 | |
2011-04-20 | Imported Upstream version 2011.03.07.1upstream/2011.03.07.1 | Ondřej Surý | 13 | -362/+1106 | |
2011-02-14 | Imported Upstream version 2011-02-01.1upstream/2011-02-01.1 | Ondřej Surý | 1 | -4/+14 | |
2011-01-17 | Imported Upstream version 2011.01.12upstream/2011.01.12 | Ondřej Surý | 7 | -130/+306 | |
2010-06-09 | add path.Base, analogous to Unix basename | Rob Pike | 2 | -0/+45 | |
R=rsc CC=golang-dev http://codereview.appspot.com/1633042 | |||||
2010-04-09 | rename os.Dir to os.FileInfo | Rob Pike | 2 | -12/+12 | |
R=rsc CC=golang-dev http://codereview.appspot.com/902042 | |||||
2010-03-11 | math, path: minor comment fixes | Robert Griesemer | 1 | -1/+1 | |
R=r CC=golang-dev http://codereview.appspot.com/444043 | |||||
2010-02-25 | strings: delete Runes, Bytes | Russ Cox | 1 | -1/+1 | |
gofmt -w -r 'strings.Bytes(a) -> []byte(a)' src/cmd src/pkg test/bench gofmt -w -r 'strings.Runes(a) -> []int(a)' src/cmd src/pkg test/bench delete unused imports R=r CC=golang-dev http://codereview.appspot.com/224062 | |||||
2010-02-25 | path: Fix bug in Match with non-greedy stars | Kevin Ballard | 2 | -1/+9 | |
path.Match() errors out when testing "*x" against "xxx" because it matches the star non-greedily. Ensure that the last chunk consumes the rest of the name. R=r, rsc CC=golang-dev http://codereview.appspot.com/223050 Committer: Russ Cox <rsc@golang.org> | |||||
2010-02-24 | path: add Match | Russ Cox | 3 | -0/+274 | |
R=eridius, r, rog CC=golang-dev http://codereview.appspot.com/217088 | |||||
2010-02-05 | path: make Join variadic | Stephen Weinberg | 2 | -16/+34 | |
R=rsc, r CC=golang-dev http://codereview.appspot.com/198049 Committer: Russ Cox <rsc@golang.org> | |||||
2009-12-15 | 1) Change default gofmt default settings for | Robert Griesemer | 2 | -72/+72 | |
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 4th set of files. R=rsc CC=golang-dev http://codereview.appspot.com/180049 | |||||
2009-12-02 | move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package. | Rob Pike | 1 | -2/+2 | |
this breaks the dependency of package io on package bytes. R=rsc CC=golang-dev http://codereview.appspot.com/163085 | |||||
2009-11-23 | go: makes it build for the case $GOROOT has whitespaces | Sergio Luis O. B. Correia | 1 | -2/+2 | |
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes issue 115. R=rsc, dsymonds1 http://codereview.appspot.com/157067 Committer: Russ Cox <rsc@golang.org> | |||||
2009-11-20 | gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg | Russ Cox | 1 | -2/+2 | |
R=r, gri CC=golang-dev http://codereview.appspot.com/156115 | |||||
2009-11-13 | path.TestWalk: disable error case if root | Russ Cox | 1 | -23/+25 | |
(chmod 0 doesn't cause errors for root) Fixes issue 22. R=gri http://codereview.appspot.com/152120 | |||||
2009-11-09 | - replaced gofmt expression formatting algorithm with | Robert Griesemer | 1 | -3/+3 | |
rsc's algorithm - applied gofmt -w misc src - partial CL (last chunk) R=rsc, r http://go/go-review/1024041 | |||||
2009-11-09 | remove semis after statements in one-statement statement lists | Robert Griesemer | 2 | -28/+28 | |
R=rsc, r http://go/go-review/1025029 | |||||
2009-11-06 | - fine-tuning of one-line func heuristic (nodes.go) | Robert Griesemer | 1 | -3/+1 | |
- 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 | |||||
2009-11-05 | gofmt'ed various stragglers | Robert Griesemer | 1 | -2/+2 | |
R=rsc http://go/go-review/1022002 | |||||
2009-10-27 | files that are okay from the last gofmt round | Russ Cox | 1 | -12/+10 | |
R=gri http://go/go-review/1015011 | |||||
2009-10-19 | directory tree walk w/ visitor per rsc's suggestion | Robert Griesemer | 2 | -1/+192 | |
R=rsc,r DELTA=193 (191 added, 0 deleted, 2 changed) OCL=35849 CL=35877 | |||||
2009-10-08 | more lgtm files from gofmt | Russ Cox | 2 | -16/+14 | |
R=gri OCL=35485 CL=35488 | |||||
2009-09-15 | more "declared and not used". | Russ Cox | 1 | -4/+4 | |
the last round omitted := range and only checked 1 out of N vars in a multi-var := R=r OCL=34624 CL=34638 | |||||
2009-09-14 | fix "declared and not used" errors in non-test code. | Russ Cox | 1 | -1/+0 | |
R=r DELTA=112 (6 added, 57 deleted, 49 changed) OCL=34610 CL=34610 | |||||
2009-08-12 | convert non-low-level non-google pkg code | Russ Cox | 2 | -55/+4 | |
to whole-package compilation. R=r OCL=33070 CL=33101 | |||||
2009-06-29 | io.StringBytes -> strings.Bytes | Russ Cox | 1 | -2/+2 | |
io.ByteBuffer -> bytes.Buffer left io.ByteBuffer stub around for now, for protocol compiler. R=r OCL=30861 CL=30872 | |||||
2009-06-09 | mv src/lib to src/pkg | Rob Pike | 3 | -0/+332 | |
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102 |