- 21 Jun, 2013 2 commits
-
-
Adam Langley authored
This Intel instruction implements multiplication in binary fields. R=golang-dev, minux.ma, dave, rsc CC=golang-dev https://golang.org/cl/10428043
-
Dave Cheney authored
trivial: it is not a serious problem to leak a fd in a short lived process, but it was obscuring my investigation of issue 5593. R=golang-dev, iant, bradfitz CC=golang-dev https://golang.org/cl/10391043
-
- 20 Jun, 2013 8 commits
-
-
Rob Pike authored
These are not erroneous, just poor or confusing. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/10448043
-
Ian Lance Taylor authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/10401046
-
Brad Fitzpatrick authored
The old code worked, somewhat on accident, but was confusing, and had a useless assignment to the inner err. It worked because url.Parse parses just about anything, so the outer err was always nil, so it always fell through to the bottom return statement, even without the "err = nil" line. Instead, just have two return statements, and add a comment. R=golang-dev, r CC=golang-dev https://golang.org/cl/10448044
-
Rob Pike authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/10328044
-
Rob Pike authored
Output now: ok crypto/aes 0.060s coverage: 89.8% of statements ok crypto/des 0.074s coverage: 92.2% of statements ok crypto/dsa 0.056s coverage: 34.5% of statements ok crypto/ecdsa 0.058s coverage: 86.8% of statements ok crypto/elliptic 0.039s coverage: 94.6% of statements ok crypto/hmac 0.037s coverage: 93.5% of statements ok crypto/md5 0.031s coverage: 96.2% of statements ok crypto/rand 0.074s coverage: 9.9% of statements ok crypto/rc4 0.090s coverage: 66.7% of statements ok crypto/rsa 0.253s coverage: 83.5% of statements R=rsc, adg CC=golang-dev https://golang.org/cl/10413044
-
Adam Langley authored
This complements the parsing function that we already have. R=golang-dev, r CC=golang-dev https://golang.org/cl/10426043
-
Rémy Oudompheng authored
R=iant, golang-dev CC=golang-dev https://golang.org/cl/10365052
-
Andrew Gerrand authored
Fixes #5655. R=golang-dev, minux.ma, r CC=golang-dev https://golang.org/cl/10410045
-
- 19 Jun, 2013 3 commits
-
-
Adam Langley authored
TLS clients send ciphersuites in preference order (most prefereable first). This change alters the order so that ECDHE comes before plain RSA, and RC4 comes before AES (because of the Lucky13 attack). This is unlikely to have much effect: as a server, the code uses the client's ciphersuite order by default and, as a client, the non-Go server probably imposes its order. R=golang-dev, r, raggi, jsing CC=golang-dev https://golang.org/cl/10372045
-
Rob Pike authored
The -cover flag is now just enable/disable and is implied if either of the other flags is set. R=rsc CC=golang-dev https://golang.org/cl/10420043
-
Rob Pike authored
The single flag -cover provides the default simplest behavior. The other flags, -covermode and -coverprofile, provide more control. The three flags interconnect to work well. R=rsc, adg CC=golang-dev https://golang.org/cl/10364044
-
- 18 Jun, 2013 8 commits
-
-
Rob Pike authored
Move the data dumper to the testing package, where it has access to file I/O. Print a percentage value at the end of the run. R=rsc, adg CC=golang-dev https://golang.org/cl/10264045
-
Robert Griesemer authored
Pointed out by go vet. R=r CC=golang-dev https://golang.org/cl/10368048
-
Russ Cox authored
(By not using the tail-call wrappers when the race detector is enabled.) R=golang-dev, minux.ma, dvyukov, daniel.morsing CC=golang-dev https://golang.org/cl/10227043
-
Cosmos Nicolaou authored
R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/9103045
-
Dave Cheney authored
Fixes #5714. R=golang-dev, iant CC=golang-dev https://golang.org/cl/10386043
-
Andrew Gerrand authored
Fixes #5589. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/10272051
-
David Bürgin authored
This basic Vim ftplugin sets the 'comments' and 'commentstring' settings to sensible values. Future filetype settings for Go would go in the same file. The ftplugin was added as misc/vim/ftplugin/go/go.vim, this way the installation instructions in readme.txt remain valid. Fixes #5715. R=dsymonds CC=gobot, golang-dev https://golang.org/cl/10323043
-
David Symonds authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/10372043
-
- 17 Jun, 2013 12 commits
-
-
Alex Jin authored
R=rsc, dave, bradfitz CC=golang-dev https://golang.org/cl/10082044
-
Brad Fitzpatrick authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/10286045
-
Paul van Brouwershaven authored
Support for CRL Distribution Points R=golang-dev, agl, bradfitz CC=golang-dev https://golang.org/cl/10258043
-
Brad Fitzpatrick authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/10332046
-
Nicolas Owens authored
use correct field count when resolving nameservers via /net/dns on Plan 9. we incorrectly check for 4 fields instead of 3 when parsing the result of /net/dns, and get no results R=golang-dev, ality CC=golang-dev https://golang.org/cl/10182044
-
Brad Fitzpatrick authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/10335044
-
Dan Peterson authored
R=golang-dev, r, kr CC=golang-dev https://golang.org/cl/10263043
-
Brad Fitzpatrick authored
Generated by addca. R=gobot CC=golang-dev https://golang.org/cl/10340043
-
Brad Fitzpatrick authored
Don't panic when the underlying Writer isn't a Closer. And document what Close does and clarify that it's not a Flush. R=golang-dev, agl CC=golang-dev https://golang.org/cl/10310043
-
Dmitriy Vyukov authored
R=golang-dev, dave CC=golang-dev https://golang.org/cl/10257043
-
Dmitriy Vyukov authored
I've hit it several times already. Currently it crashes with nil deref. R=golang-dev, daniel.morsing, r CC=golang-dev https://golang.org/cl/10317045
-
Benny Siegert authored
This is needed on NetBSD-current. Support for ulimit -T in bash was added in 4.2nb3. R=golang-dev, minux.ma, rsc, dave CC=golang-dev https://golang.org/cl/10078047
-
- 15 Jun, 2013 3 commits
-
-
Dmitriy Vyukov authored
If first GC runs concurrently with setGCPercent, it can overwrite gcpercent value with default. R=golang-dev, iant CC=golang-dev https://golang.org/cl/10242047
-
Dmitriy Vyukov authored
Currently global runqueue is starved if a group of goroutines constantly respawn each other (local runqueue never becomes empty). Fixes #5639. R=golang-dev, iant CC=golang-dev https://golang.org/cl/10042044
-
Dmitriy Vyukov authored
It was used to request large stack segment for GC when it was running not on g0. Now GC is running on g0 with large stack, and it is not needed anymore. R=golang-dev, dave CC=golang-dev https://golang.org/cl/10242045
-
- 14 Jun, 2013 4 commits
-
-
Jonathan Rudenberg authored
R=golang-dev, gri, gri CC=golang-dev https://golang.org/cl/9722045
-
Keith Randall authored
No need to change to Grunnable state. Add some more checks for Grunning state. R=golang-dev, rsc, khr, dvyukov CC=golang-dev https://golang.org/cl/10186045
-
Brad Fitzpatrick authored
R=golang-dev, r CC=golang-dev https://golang.org/cl/10283043
-
Brad Fitzpatrick authored
In Issue 5625, Russ says: "We should at least have a cache of inflight lookups, so that 100 simultaneous dials of one host name don't do the work 100x. That's easy and (assume we forget the answer once they all get it) doesn't pose any consistency problems. It just merges simultaneous work." This brings in singleflight (unexported) from Google / Camlistore, but without its tests. Maybe we should put it somewhere in the standard library. But not now. Update #5625 R=golang-dev, iant, cespare, rsc, dave, rogpeppe, remyoudompheng CC=golang-dev https://golang.org/cl/10079043
-