summaryrefslogtreecommitdiff
path: root/src/pkg
AgeCommit message (Collapse)AuthorFilesLines
2011-11-28Imported Upstream version 60.3upstream/60.3Ondřej Surý10-1566/+266
2011-10-06Imported Upstream version 60.2upstream/60.2Ondřej Surý5-36/+39
2011-09-19Imported Upstream version 60.1upstream/60.1Ondřej Surý9-23/+189
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1529-0/+322728
2011-09-13Imported Upstream version 60Ondřej Surý1471-311818/+0
2011-08-03Imported Upstream version 59upstream/59Ondřej Surý408-5044/+20179
2011-07-13Imported Upstream version 58.1upstream/58.1Ondřej Surý7-98/+80
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý425-11183/+30983
2011-06-16Imported Upstream version 57.2upstream/57.2Ondřej Surý1-1/+3
2011-05-16Imported Upstream version 57.1upstream/57.1Ondřej Surý2-3/+33
2011-05-04Imported Upstream version 57upstream/57Ondřej Surý17-209/+542
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý318-2816/+9688
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý463-11140/+24530
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý241-3250/+11672
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý180-1916/+7728
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý308-4258/+8678
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý892-43367/+58419
2010-07-01strconv.Uitob64: allow conversion of 64-bit binaries (buffer was too small).Rob Pike2-1/+6
panic if base is invalid. R=rsc CC=golang-dev http://codereview.appspot.com/1702050
2010-07-01strings and bytes.Split: make count of 0 mean 0, not infinite.Rob Pike18-89/+114
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>
2010-06-30cmath: correct IsNaN for argument cmplx(Inf, NaN)Charles L. Dorian2-6/+38
R=rsc CC=golang-dev http://codereview.appspot.com/1705041 Committer: Russ Cox <rsc@golang.org>
2010-06-30template: fix typo in doc commentDaniel Fleischman1-1/+1
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/1665047 Committer: Russ Cox <rsc@golang.org>
2010-06-30bytes, strings: add ReplaceRuss Cox4-0/+153
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
2010-06-30 x509: fix English.Adam Langley1-2/+2
(addressing comments from 1741045) R=r CC=golang-dev http://codereview.appspot.com/1678047
2010-06-30x509: support non-self-signed certs.Adam Langley2-6/+7
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
2010-06-30syscall: add socketpairIvan Krasin9-0/+67
R=rsc CC=golang-dev http://codereview.appspot.com/1319042 Committer: Russ Cox <rsc@golang.org>
2010-06-30math: amd64 versions of exp and fabsCharles L. Dorian6-11/+141
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>
2010-06-30io/ioutil.TempFile for WindowsPeter Mundy7-12/+79
Fixes issue 834. R=rsc, brainman CC=golang-dev http://codereview.appspot.com/1686047 Committer: Russ Cox <rsc@golang.org>
2010-06-30io: Avoid race condition in pipe.Ian Lance Taylor1-1/+2
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
2010-06-30http: client_test nil pointer fixAndrew Gerrand1-1/+1
Fixes issue 893. R=rsc CC=golang-dev http://codereview.appspot.com/1687045
2010-06-29time: implement timezones for windowsAlex Brainman7-19/+517
Fixes issue 761. R=PeterGo, adg, rsc CC=golang-dev http://codereview.appspot.com/1121042 Committer: Russ Cox <rsc@golang.org>
2010-06-29net: initial attempt to implement windows versionAlex Brainman7-48/+861
R=rsc, Mateusz Czaplinski CC=golang-dev http://codereview.appspot.com/1600041 Committer: Russ Cox <rsc@golang.org>
2010-06-30 net: add support for DNS SRV requests.Kirklin McDonald2-23/+82
Fixes issue 758. R=rsc, adg CC=golang-dev http://codereview.appspot.com/1078041 Committer: Andrew Gerrand <adg@golang.org>
2010-06-29runtime: fix scheduling bug - world wasn't stoppingRuss Cox1-1/+1
Fixes issue 886. R=r CC=golang-dev http://codereview.appspot.com/1667051
2010-06-29strconv: fix %.1f, 0.09Rob Pike3-6/+21
Fixes issue 822. Credit to http://codereview.appspot.com/1442041 by danielfleischman R=rsc CC=golang-dev http://codereview.appspot.com/1738047
2010-06-29strconv: fix %.2g, 40Rob Pike2-4/+21
Fixes issue 845. R=rsc CC=golang-dev http://codereview.appspot.com/1673049
2010-06-29Move the function Run() back into fd.go.Vinu Rajashekhar2-46/+44
R=iant CC=golang-dev, rsc http://codereview.appspot.com/1748041 Committer: Ian Lance Taylor <iant@golang.org>
2010-06-29gob: a couple of tiny simplifications using Kind()Rob Pike3-12/+26
R=rsc CC=golang-dev http://codereview.appspot.com/1695046
2010-06-29runtime: fix windows buildAlex Brainman1-0/+2
R=golang-dev, iant CC=golang-dev http://codereview.appspot.com/1747041 Committer: Ian Lance Taylor <iant@golang.org>
2010-06-29exp/draw/x11: implement the mapping from keycodes to keysyms.Nigel Tao1-31/+78
R=rsc CC=golang-dev, rog http://codereview.appspot.com/1739042
2010-06-28Only catch all signals if os/signal package imported.Ian Lance Taylor13-12/+27
Fixes issue 776. R=rsc CC=golang-dev http://codereview.appspot.com/1745041
2010-06-28netchan: use gob DecodeValue to eliminate the need for a pointer valueRob Pike4-40/+28
in Import and Export. R=rsc CC=golang-dev http://codereview.appspot.com/1707047
2010-06-28gob: add DecodeValue and EncodeValueRob Pike5-18/+30
R=rsc CC=golang-dev http://codereview.appspot.com/1698045
2010-06-29syscall: Add syscall_bsd.go to zsycall_freebsd_386.goPeter Mundy1-1/+13
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>
2010-06-28rpc: allow non-struct args and reply (they must still be pointers)Rob Pike2-41/+75
R=rsc CC=golang-dev http://codereview.appspot.com/1722046
2010-06-28netchan: allow chan of basic types now that gob can handle suchRob Pike3-24/+16
R=rsc CC=golang-dev http://codereview.appspot.com/1741041
2010-06-28fmt.Printf: fix bug in handling of %#v.Rob Pike3-63/+68
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
2010-06-28gob: allow transmission of things other than structs at the top level.Rob Pike6-113/+234
also fix a bug handling nil maps: before, would needlessly send empty map R=rsc CC=golang-dev http://codereview.appspot.com/1739043
2010-06-28Move the functions, newPollServer and Run, from fd.goVinu Rajashekhar3-75/+88
to a new source file. R=iant, rsc CC=golang-dev http://codereview.appspot.com/1670046 Committer: Ian Lance Taylor <iant@golang.org>
2010-06-24fmt.Scan: fix handling of EOFs.Rob Pike2-2/+53
Fixes issue 876. R=rsc CC=golang-dev http://codereview.appspot.com/1675048
2010-06-24gob: add support for complex numbersRob Pike4-69/+224
R=rsc CC=golang-dev http://codereview.appspot.com/1708048