- 01 Apr, 2010 3 commits
-
-
Russ Cox authored
factor out environment variable checks. infer $GOROOT etc during build if not set. it's still necessary to set them for yourself to use the standard Makefiles. when running all.bash, don't recompile all the go packages in run.bash, since make.bash already did. R=r CC=golang-dev https://golang.org/cl/609042
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/816042
-
Andrew Gerrand authored
R=r, gri CC=golang-dev https://golang.org/cl/872041
-
- 31 Mar, 2010 15 commits
-
-
Robert Griesemer authored
R=r, rsc CC=golang-dev https://golang.org/cl/849044
-
Nigel Tao authored
http://code.google.com/p/x-go-binding/ R=rsc CC=golang-dev https://golang.org/cl/846043
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/870041
-
Robert Griesemer authored
R=rsc, r CC=golang-dev https://golang.org/cl/864042
-
Rob Pike authored
R=rsc, gri CC=golang-dev https://golang.org/cl/821046
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/805043
-
Russ Cox authored
R=r, adg CC=golang-dev https://golang.org/cl/869041
-
Russ Cox authored
R=ken2, r, ken3 CC=golang-dev https://golang.org/cl/831042
-
Andrew Gerrand authored
R=rsc, gri, r CC=golang-dev https://golang.org/cl/822044
-
Andrew Gerrand authored
R=rsc CC=golang-dev https://golang.org/cl/859042
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/864041
-
Rob Pike authored
in character and string case mapping routines. Add a custom mapper for Turkish and Azeri. A more general solution for deriving the case information from Unicode's SpecialCasing.txt will require more work. Fixes #703. R=rsc, rsc1 CC=golang-dev, mdakin https://golang.org/cl/824043
-
Andrew Gerrand authored
R=rsc, gri CC=golang-dev https://golang.org/cl/821045
-
Robert Griesemer authored
and use it to show version (date) of go spec Fixes #68. R=rsc CC=golang-dev, r https://golang.org/cl/848042
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/842042
-
- 30 Mar, 2010 20 commits
-
-
Robert Griesemer authored
- more test cases - comment fixes - minor unrelated changes as part of investigation of issue 702 R=rsc CC=golang-dev https://golang.org/cl/860041
-
Russ Cox authored
instead use pure substring matching to find template values. this makes stdZulu unnecessary and allows formats like "20060102 030405" (used in some internet protocols). this makes Parse not handle years < 0000 or > 9999 anymore. that seems like an okay price to pay, trading hypothetical functionality for real functionality. also changed the comments on the Time struct to use the same reference date as the format and parse routines. R=r CC=golang-dev https://golang.org/cl/833045
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/848041
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/800042
-
Risto Jaakko Saarelma authored
This is for making the fluent interface idiom usable with gofmt. R=gri CC=golang-dev https://golang.org/cl/802043
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/836043
-
Rob Pike authored
R=rsc, gri, iant CC=golang-dev https://golang.org/cl/821044
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/844041
-
Russ Cox authored
main semantic change is to enforce single argument to panic. runtime: change to 1-argument panic. use String method on argument if it has one. R=ken2, r CC=golang-dev https://golang.org/cl/812043
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/833044
-
Russ Cox authored
otherwise "make install" runs cp unconditionally R=r CC=golang-dev https://golang.org/cl/802044
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/849041
-
Russ Cox authored
note that sortmain.go has been run through hg gofmt; only the formatting of the day initializers changed. i'm happy to revert that formatting if you'd prefer. stop on error in doc/progs/run R=r CC=golang-dev https://golang.org/cl/850041
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/811042
-
Christopher Wedgwood authored
Also minor reformatting. R=rsc CC=golang-dev https://golang.org/cl/845041
-
Russ Cox authored
baby step toward panic+recover. Fixes #349. R=r CC=golang-dev https://golang.org/cl/825043
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/826042
-
Robert Griesemer authored
+ various minor cleanups Usage: godoc -src math Sin R=rsc CC=golang-dev https://golang.org/cl/791041
-
Rob Pike authored
the set() method and add() functions. But we rename add() to Var() for consistency. Also rename FlagValue to Value for simplicity. Also, delete the check for multiple settings for a flag. This makes it possible to define a flag that collects values, such as into a slice of strings. type flagVar []string func (f *flagVar) String() string { return fmt.Sprint(v) } func (f *flagVar) Set(value string) bool { if v == nil { v = make(flagVar, 1) } else { nv := make(flagVar, len(v)+1) copy(nv, v) v = nv } v[len(v)-1] = value return true } var v flagVar func main() { flag.Var(&v, "testV", "multiple values build []string") flag.Parse() fmt.Printf("v = %v\n", v) } R=rsc CC=golang-dev https://golang.org/cl/842041
-
Russ Cox authored
now runtime.MemStats.Sys really is the sum of all the other Sys fields. R=r CC=golang-dev https://golang.org/cl/843041
-
- 29 Mar, 2010 2 commits
-
-
Russ Cox authored
Fixes #700. R=ken2 CC=golang-dev https://golang.org/cl/839041
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/788041
-