Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
panic if base is invalid.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1702050
|
|
Use a count of -1 for infinity. Ditto for Replace.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1704044
Committer: Rob Pike <r@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1705041
Committer: Russ Cox <rsc@golang.org>
|
|
R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/1665047
Committer: Russ Cox <rsc@golang.org>
|
|
This is the Replace I suggested in the review of CL 1114041.
It's true that we already have
regexp.MustCompile(regexp.QuoteMeta(old)).ReplaceAll(s, new)
but because this Replace is doing a simpler job it is
simpler to call and inherently more efficient.
I will add the bytes implementation and tests to the
CL after the strings one has been reviewed.
R=r, cw
CC=golang-dev
http://codereview.appspot.com/1731048
|
|
(addressing comments from 1741045)
R=r
CC=golang-dev
http://codereview.appspot.com/1678047
|
|
For generating non-self-signed certs we need to be able to specify a
public key (for the signee) which is different from the private key (of
the signer).
R=rsc
CC=golang-dev
http://codereview.appspot.com/1741045
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1319042
Committer: Russ Cox <rsc@golang.org>
|
|
Benchmark of exp to 28 ns/op from 64 ns/op,
on 2.53GHz Intel Core 2 Duo.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1594041
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 834.
R=rsc, brainman
CC=golang-dev
http://codereview.appspot.com/1686047
Committer: Russ Cox <rsc@golang.org>
|
|
One goroutine started up and was waiting in rw. Then another
goroutine decided to close the pipe. The closing goroutine
stalled calling p.io.Lock() in pipeHalf.close. (This happened
in gccgo). If the closing goroutine had been able to set the
ioclosed flag, it would have gone on to tell the runner that
the pipe was closed, which would then send an EINVAL to the
goroutine sleeping in rw. Unlocking p.io before sleeping in
rw avoids the race.
R=rsc, rsc1
CC=golang-dev
http://codereview.appspot.com/1682048
|
|
Fixes issue 893.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1687045
|
|
Fixes issue 761.
R=PeterGo, adg, rsc
CC=golang-dev
http://codereview.appspot.com/1121042
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc, Mateusz Czaplinski
CC=golang-dev
http://codereview.appspot.com/1600041
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 758.
R=rsc, adg
CC=golang-dev
http://codereview.appspot.com/1078041
Committer: Andrew Gerrand <adg@golang.org>
|
|
Fixes issue 886.
R=r
CC=golang-dev
http://codereview.appspot.com/1667051
|
|
Fixes issue 822.
Credit to http://codereview.appspot.com/1442041 by danielfleischman
R=rsc
CC=golang-dev
http://codereview.appspot.com/1738047
|
|
Fixes issue 845.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1673049
|
|
R=iant
CC=golang-dev, rsc
http://codereview.appspot.com/1748041
Committer: Ian Lance Taylor <iant@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1695046
|
|
R=golang-dev, iant
CC=golang-dev
http://codereview.appspot.com/1747041
Committer: Ian Lance Taylor <iant@golang.org>
|
|
R=rsc
CC=golang-dev, rog
http://codereview.appspot.com/1739042
|
|
Fixes issue 776.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1745041
|
|
in Import and Export.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1707047
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1698045
|
|
Revision: 5885c9d10f created syscall_bsd.go for code used
by Darwin and other *BSDs, which should have included
FreeBSD. mksyscall.sh to generate new zsyscall_freebsd_386.go.
Fixes issue 862.
R=golang-dev, adg
CC=golang-dev
http://codereview.appspot.com/1701048
Committer: Andrew Gerrand <adg@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1722046
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1741041
|
|
nice side effect: slices now obey their format verb. example:
fmt.Printf("%q\n", []string{"a"})
R=rsc
CC=golang-dev
http://codereview.appspot.com/1729045
|
|
also fix a bug handling nil maps: before, would needlessly send empty map
R=rsc
CC=golang-dev
http://codereview.appspot.com/1739043
|
|
to a new source file.
R=iant, rsc
CC=golang-dev
http://codereview.appspot.com/1670046
Committer: Ian Lance Taylor <iant@golang.org>
|
|
Fixes issue 876.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1675048
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1708048
|
|
R=nigeltao_golang
CC=golang-dev, r, rsc
http://codereview.appspot.com/1690043
Committer: Nigel Tao <nigeltao@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/1714044
|
|
Fixes issue 872.
R=rsc
CC=golang-dev
http://codereview.appspot.com/1731043
|
|
Fixes issue 881.
R=iant
CC=golang-dev
http://codereview.appspot.com/1696044
|
|
move mal next to the other malloc functions.
R=r
CC=golang-dev
http://codereview.appspot.com/1701045
|
|
to make it easier to build package without assembly.
R=r, r2
CC=golang-dev
http://codereview.appspot.com/1680045
|
|
now net.go is only type definitions, not active code.
R=r
CC=golang-dev
http://codereview.appspot.com/1708046
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/1715043
|
|
Ping IDs should be limited to 16-bits. Fix failure printing.
R=rsc
CC=golang-dev, jean-christophe smith <jeanchristophe.smith
http://codereview.appspot.com/1682043
Committer: Russ Cox <rsc@golang.org>
|