- 15 Apr, 2010 5 commits
-
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/872045
-
Andrei Vieru authored
$ godoc xml | grep Copy\(\) func (c CharData) Copy() CharData func (c Comment) Copy() Comment func (d Directive) Copy() Directive func (p ProcInst) Copy() ProcInst func (e StartElement) Copy() StartElement -------------------------------------------- $ godoc -src xml | grep Copy\(\) func (c CharData) Copy() CharData -------------------------------------------- $ godoc -src xml Copy func (c CharData) Copy() CharData { return CharData(makeCopy(c)) } -------------------------------------------- The command "godoc -src pkg_name" should output the interface of the named package, but it excludes all duplicate entries. Also the command "godoc -src pkg_name method_name" will output the source code only for one method even if there are more of them with the same name in the same package. This patch set fixes this issue. R=gri CC=golang-dev https://golang.org/cl/883051
-
Kai Backman authored
R=rsc CC=golang-dev https://golang.org/cl/912041
-
Kai Backman authored
fmt.Printf("float32 %f\n", float32(1234.56789)) fmt.Printf("float64 %f\n", float64(1234.56789)) -> float32 1234.567871 float64 1234.567890 this is a snapshot. extended instruction support, corner cases and fixes coming in subseuent cls. R=rsc CC=dpx, golang-dev https://golang.org/cl/876045
-
Robert Griesemer authored
R=rsc CC=golang-dev https://golang.org/cl/840045
-
- 14 Apr, 2010 6 commits
-
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/920041
-
Andrew Gerrand authored
R=rsc, r CC=golang-dev https://golang.org/cl/896045
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/854048
-
Alex Brainman authored
R=rsc CC=golang-dev https://golang.org/cl/815044
-
Russ Cox authored
R=r, iant CC=golang-dev https://golang.org/cl/921041
-
Andrew Gerrand authored
R=rsc, r CC=golang-dev https://golang.org/cl/902045
-
- 13 Apr, 2010 8 commits
-
-
Alex Brainman authored
R=rsc CC=golang-dev https://golang.org/cl/851045
-
Evan Shaw authored
R=rsc CC=golang-dev https://golang.org/cl/915041
-
Rob Pike authored
much rewriting and improving, but it's still experimental. R=rsc CC=golang-dev https://golang.org/cl/875045
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/824049
-
Ian Lance Taylor authored
R=r CC=golang-dev https://golang.org/cl/882047
-
Christopher Wedgwood authored
R=rsc, r CC=golang-dev https://golang.org/cl/854046
-
Christopher Wedgwood authored
R=gri, adg CC=golang-dev, r, rsc https://golang.org/cl/857048
-
Rob Pike authored
- don't log normal EOF - fix ServeConn to block as documented R=rsc, msolo CC=golang-dev https://golang.org/cl/886043
-
- 12 Apr, 2010 5 commits
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/891050
-
Christopher Wedgwood authored
R=rsc, r CC=golang-dev https://golang.org/cl/891048
-
Andrei Vieru authored
fmt.Printf("%b", int8(-1)) prints 64 ones instead of 8. This happens only for signed integers (int8, in16 and int32). I guess it's because of the way the conversion between integer types works. From go spec: "Conversions between integer types. If the value is a signed quantity, it is sign extended to implicit infinite precision ....". And there are several conversions to int64 and uint64 in the fmt package. This pathch solves only half of the problem. On a 32 bit system, an fmt.Printf("%b", int(-1)) should still print 64 ones. R=golang-dev, r CC=golang-dev https://golang.org/cl/891049
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/890044
-
Christopher Wedgwood authored
R=rsc CC=golang-dev https://golang.org/cl/888045
-
- 11 Apr, 2010 10 commits
-
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/840043
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/902044
-
Russ Cox authored
R=ken2 CC=golang-dev https://golang.org/cl/883049
-
Evan Shaw authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/849049
-
Evan Shaw authored
R=rsc CC=golang-dev https://golang.org/cl/901042
-
Christopher Wedgwood authored
R=rsc, r CC=golang-dev https://golang.org/cl/903044
-
Christopher Wedgwood authored
R=rsc, r CC=golang-dev https://golang.org/cl/822047
-
Christopher Wedgwood authored
R=rsc, r CC=golang-dev https://golang.org/cl/823045
-
Christopher Wedgwood authored
R=gri, r CC=golang-dev, rsc https://golang.org/cl/819042
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/811044
-
- 10 Apr, 2010 2 commits
-
-
David Symonds authored
R=rsc CC=golang-dev https://golang.org/cl/903043
-
Michael Hoisie authored
strings: add IndexRune, Trim, TrimLeft, TrimRight, and the generic equivalents TrimFunc, TrimLeftFunc, TrimRightFunc R=rsc, r CC=golang-dev https://golang.org/cl/799048
-
- 09 Apr, 2010 4 commits
-
-
Russ Cox authored
remove internal functions from traces in gopprof instead. R=r CC=golang-dev https://golang.org/cl/855046
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/909041
-
Charles L. Dorian authored
R=rsc CC=golang-dev https://golang.org/cl/908041
-
Charles L. Dorian authored
R=rsc CC=golang-dev https://golang.org/cl/831045
-