- 02 Sep, 2010 7 commits
-
-
Russ Cox authored
Fixes #1071. R=ken2 CC=golang-dev https://golang.org/cl/2136043
-
Scott Lawrence authored
Fixes #897. goinstall -a can be used to reinstall all packages after an upgrade goinstall -a -u can be used to update all package A history of remote package installs is stored in $GOROOT/goinstall.log R=rsc, adg CC=golang-dev https://golang.org/cl/1947041
-
Robert Griesemer authored
R=rsc CC=golang-dev, r https://golang.org/cl/2141041
-
Alex Brainman authored
Fixes #1064. R=rsc, lvd, vcc CC=golang-dev https://golang.org/cl/2104042
-
Ian Lance Taylor authored
bug284.go:33: error: invalid type conversion bug284.go:36: error: invalid type conversion (cannot use type A2 as type A1) bug284.go:37: error: invalid type conversion bug284.go:38: error: invalid type conversion (cannot use type A1 as type A2) bug284.go:56: error: invalid type conversion bug284.go:59: error: invalid type conversion (cannot use type S2 as type S1) bug284.go:60: error: invalid type conversion bug284.go:61: error: invalid type conversion (cannot use type S1 as type S2) bug284.go:71: error: invalid type conversion bug284.go:74: error: invalid type conversion (cannot use type P2 as type P1) bug284.go:75: error: invalid type conversion bug284.go:76: error: invalid type conversion (cannot use type P1 as type P2) bug284.go:96: error: invalid type conversion bug284.go:99: error: invalid type conversion (cannot use type Q2 as type Q1) bug284.go:101: error: invalid type conversion (cannot use type Q1 as type Q2) bug284.go:111: error: invalid type conversion (different parameter types) bug284.go:114: error: invalid type conversion (different parameter types) bug284.go:115: error: invalid type conversion (different parameter types) bug284.go:116: error: invalid type conversion (different parameter types) bug284.go:134: error: invalid type conversion (incompatible type for method 'f' (different result types)) bug284.go:137: error: invalid type conversion (incompatible type for method 'f' (different result types)) bug284.go:138: error: invalid type conversion (incompatible type for method 'f' (different result types)) bug284.go:139: error: invalid type conversion (incompatible type for method 'f' (different result types)) bug284.go:149: error: invalid type conversion bug284.go:152: error: invalid type conversion (cannot use type L2 as type L1) bug284.go:153: error: invalid type conversion bug284.go:154: error: invalid type conversion (cannot use type L1 as type L2) bug284.go:164: error: invalid type conversion bug284.go:167: error: invalid type conversion (cannot use type L2 as type L1) bug284.go:168: error: invalid type conversion bug284.go:169: error: invalid type conversion (cannot use type L1 as type L2) bug284.go:179: error: invalid type conversion bug284.go:182: error: invalid type conversion (cannot use type C2 as type C1) bug284.go:183: error: invalid type conversion bug284.go:184: error: invalid type conversion (cannot use type C1 as type C2) R=rsc CC=golang-dev https://golang.org/cl/2136041
-
Ian Lance Taylor authored
bug278.go:18: error: invalid left hand side of assignment bug278.go:19: error: array is not addressable bug278.go:21: error: invalid left hand side of assignment bug278.go:22: error: invalid left hand side of assignment R=rsc CC=golang-dev https://golang.org/cl/2122042
-
Andrew Gerrand authored
This is a common task, so it makes sense to have a helper to do it. (App Engine doesn't like "Transfer-Encoding: chunked" for POST bodies, which is the default for regular Post.) R=rsc CC=golang-dev https://golang.org/cl/2113041
-
- 01 Sep, 2010 9 commits
-
-
Kyle Consalus authored
R=golang-dev, gri1, gri CC=golang-dev https://golang.org/cl/2083042
-
Rob Pike authored
It's unlikely to affect any extant code, but I wanted to make this API change before digging in for a rewrite. R=rsc CC=golang-dev https://golang.org/cl/2112041
-
Ian Lance Taylor authored
The gccgo compiler is smart enough to not make something which is not used. Use global variables to defeat this optimization. R=rsc CC=golang-dev https://golang.org/cl/2129041
-
Luuk van Dijk authored
R=rsc, r, ken2 CC=golang-dev https://golang.org/cl/2128041
-
Rob Pike authored
No semantic change. R=rsc CC=golang-dev https://golang.org/cl/2121041
-
Scott Lawrence authored
What was meant to be a list appeared as a paragraph with dashes. R=golang-dev, gri1, gri CC=golang-dev https://golang.org/cl/2100041
-
Rob Pike authored
No semantic change. R=rsc CC=golang-dev https://golang.org/cl/2099041
-
Rob Pike authored
R=gri, rsc CC=golang-dev https://golang.org/cl/2078041
-
Ian Lance Taylor authored
bug255.go:11: error: array bound truncated to integer bug255.go:12: error: array bound is not numeric bug255.go:13: error: array bound is not numeric bug255.go:14: error: array bound is not constant bug255.go:15: error: array bound overflows R=rsc CC=golang-dev https://golang.org/cl/2091042
-
- 31 Aug, 2010 9 commits
-
-
Ian Lance Taylor authored
Another case where gccgo and gc report similar but not identical errors for a recursive interface. bug251.go:11: error: invalid recursive interface R=rsc CC=golang-dev https://golang.org/cl/2094041
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/2095041
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/2029042
-
Ian Lance Taylor authored
This introduces GC_ERROR to mark an error only issued by the gc compiler. GCCGO_ERROR already exists to mark errors only issued by the gccgo compiler. Obviously these should be used sparingly. bug195.go:9: error: interface contains embedded non-interface bug195.go:12: error: interface contains embedded non-interface bug195.go:15: error: interface contains embedded non-interface bug195.go:18: error: invalid recursive interface bug195.go:22: error: invalid recursive interface R=rsc CC=golang-dev https://golang.org/cl/2040043
-
Ian Lance Taylor authored
gcc conventionally does not upper case in error messages. char_lit1.go:13: error: invalid unicode code point 0xd800 char_lit1.go:14: error: invalid unicode code point 0xd999 char_lit1.go:15: error: invalid unicode code point 0xdc01 char_lit1.go:16: error: invalid unicode code point 0xdddd char_lit1.go:17: error: invalid unicode code point 0xdfff char_lit1.go:20: error: invalid unicode code point 0x110000 char_lit1.go:22: error: invalid unicode code point 0x110000 char_lit1.go:23: error: invalid unicode code point 0xffffffff R=rsc CC=golang-dev https://golang.org/cl/2040042
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/2084042
-
Scott Lawrence authored
R=golang-dev, rsc1, rsc CC=golang-dev https://golang.org/cl/2039044
-
Scott Lawrence authored
R=golang-dev, rsc1, rsc CC=golang-dev https://golang.org/cl/2061042
-
Nigel Tao authored
R=r CC=golang-dev https://golang.org/cl/2050042
-
- 30 Aug, 2010 7 commits
-
-
Ian Lance Taylor authored
R=rsc CC=golang-dev https://golang.org/cl/2084041
-
Luuk van Dijk authored
R=rsc, r, ken2 CC=golang-dev https://golang.org/cl/2004046
-
Christian Himpel authored
All scripts and makefiles assume that GOBIN is correctly set in PATH. R=rsc CC=golang-dev https://golang.org/cl/2043041
-
Vincent Ambo authored
R=golang-dev, adg1, adg CC=golang-dev https://golang.org/cl/2075041
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/2048043
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/2042044
-
Evan Shaw authored
See: http://selenic.com/repo/hg/rev/32b213b9b22c http://selenic.com/repo/hg/rev/2096496b40ec R=rsc, adg CC=golang-dev https://golang.org/cl/2072041
-
- 29 Aug, 2010 3 commits
-
-
Evan Shaw authored
R=golang-dev, adg CC=golang-dev https://golang.org/cl/2073041
-
Scott Lawrence authored
(Fixes missing tags, extra tags, missing attributes, and such found by tidy -e) R=golang-dev, adg1, adg CC=golang-dev https://golang.org/cl/2039043
-
Rob Pike authored
Fixes #1056. R=golang-dev, adg1 CC=golang-dev https://golang.org/cl/2033043
-
- 27 Aug, 2010 5 commits
-
-
James Fysh authored
Not a bug per-se, the issue is that the fmt.Sprintf method inside the ByteSize.String() method ends up calling itself to generate the String representation of the ByteSize value. Infinite loops are bad. Updated as per review comments R=r CC=golang-dev https://golang.org/cl/1974046
-
Rob Pike authored
Rewrite the code to express the intention more clearly. Fixes #1042. R=rsc CC=golang-dev https://golang.org/cl/2011046
-
Rob Pike authored
R=gri CC=James Fysh, golang-dev https://golang.org/cl/2043042
-
Robert Griesemer authored
R=rsc CC=golang-dev, r https://golang.org/cl/2053041
-
Russ Cox authored
Fixes #1052. R=ken2 CC=golang-dev https://golang.org/cl/2055041
-