Age | Commit message (Collapse) | Author | Files | Lines |
|
R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/849045
Committer: Russ Cox <rsc@golang.org>
|
|
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
http://codereview.appspot.com/609042
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/816042
Committer: Rob Pike <r@golang.org>
|
|
R=r, gri
CC=golang-dev
http://codereview.appspot.com/872041
|
|
R=r, rsc
CC=golang-dev
http://codereview.appspot.com/849044
|
|
http://code.google.com/p/x-go-binding/
R=rsc
CC=golang-dev
http://codereview.appspot.com/846043
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/870041
|
|
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/864042
|
|
R=rsc, gri
CC=golang-dev
http://codereview.appspot.com/821046
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/805043
|
|
R=r, adg
CC=golang-dev
http://codereview.appspot.com/869041
|
|
R=ken2, r, ken3
CC=golang-dev
http://codereview.appspot.com/831042
|
|
R=rsc, gri, r
CC=golang-dev
http://codereview.appspot.com/822044
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/859042
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/864041
|
|
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 issue 703.
R=rsc, rsc1
CC=golang-dev, mdakin
http://codereview.appspot.com/824043
|
|
R=rsc, gri
CC=golang-dev
http://codereview.appspot.com/821045
|
|
and use it to show version (date) of go spec
Fixes issue 68.
R=rsc
CC=golang-dev, r
http://codereview.appspot.com/848042
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/842042
|
|
- more test cases
- comment fixes
- minor unrelated changes as part of investigation of issue 702
R=rsc
CC=golang-dev
http://codereview.appspot.com/860041
|
|
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
http://codereview.appspot.com/833045
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/848041
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/800042
|
|
This is for making the fluent interface idiom usable with gofmt.
R=gri
CC=golang-dev
http://codereview.appspot.com/802043
Committer: Robert Griesemer <gri@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/836043
|
|
R=rsc, gri, iant
CC=golang-dev
http://codereview.appspot.com/821044
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/844041
|
|
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
http://codereview.appspot.com/812043
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/833044
|
|
otherwise "make install" runs cp unconditionally
R=r
CC=golang-dev
http://codereview.appspot.com/802044
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/849041
|
|
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
http://codereview.appspot.com/850041
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/811042
|
|
Also minor reformatting.
R=rsc
CC=golang-dev
http://codereview.appspot.com/845041
Committer: Russ Cox <rsc@golang.org>
|
|
baby step toward panic+recover.
Fixes issue 349.
R=r
CC=golang-dev
http://codereview.appspot.com/825043
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/826042
|
|
+ various minor cleanups
Usage: godoc -src math Sin
R=rsc
CC=golang-dev
http://codereview.appspot.com/791041
|
|
publishing
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
http://codereview.appspot.com/842041
|
|
now runtime.MemStats.Sys really is the sum of all the other Sys fields.
R=r
CC=golang-dev
http://codereview.appspot.com/843041
|
|
Fixes issue 700.
R=ken2
CC=golang-dev
http://codereview.appspot.com/839041
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/788041
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/833042
|
|
R=gri
CC=golang-dev
http://codereview.appspot.com/837041
|
|
expvar: default publishings for cmdline, memstats
godoc: import expvar
R=r
CC=golang-dev
http://codereview.appspot.com/815041
|
|
( http://code.google.com/p/go/issues/detail?id=700 )
R=r
CC=golang-dev
http://codereview.appspot.com/827042
|
|
R=rsc, gri
CC=golang-dev
http://codereview.appspot.com/773041
Committer: Robert Griesemer <gri@golang.org>
|
|
Fixes issue 698.
Fixes issue 699.
R=rsc
CC=golang-dev
http://codereview.appspot.com/824041
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/823041
|
|
Fixes issue 697
R=r
CC=golang-dev
http://codereview.appspot.com/804042
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/763042
|