]>
Cypherpunks repositories - gostls13.git/log
Andrew Gerrand [Mon, 12 Dec 2011 22:44:06 +0000 (09:44 +1100)]
doc: add Error Handling article
Originally published on The Go Programming Language Blog, July 12, 2011.
http://blog.golang.org/2011/07/error-handling-and-go.html
Update #2547
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5475060
Brad Fitzpatrick [Mon, 12 Dec 2011 21:56:56 +0000 (13:56 -0800)]
sql: fix missing mutex unlock in an error case
Fixes #2542
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5483054
Gustavo Niemeyer [Mon, 12 Dec 2011 21:45:40 +0000 (19:45 -0200)]
reflect: fix Slice cap
R=golang-dev, dsymonds, r, rsc
CC=golang-dev
https://golang.org/cl/
5483044
Sébastien Paolacci [Mon, 12 Dec 2011 21:33:13 +0000 (16:33 -0500)]
runtime: madvise and SysUnused for Linux
SysUnused being a direct call to madvise MADV_DONTNEED.
R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/
5477057
Lucio De Re [Mon, 12 Dec 2011 21:25:31 +0000 (16:25 -0500)]
gc: avoid 0-length C array
R=golang-dev, ality
CC=golang-dev, rsc
https://golang.org/cl/
5467066
Anthony Martin [Mon, 12 Dec 2011 21:14:00 +0000 (16:14 -0500)]
os: fix Plan 9 build for new FileInfo API
R=lucio.dere, rsc
CC=golang-dev
https://golang.org/cl/
5440073
Anthony Martin [Mon, 12 Dec 2011 21:12:22 +0000 (16:12 -0500)]
time: fix Plan 9 build for new API
I had to move readFile into sys_$GOOS.go
since syscall.Open takes only two arguments
on Plan 9.
R=lucio.dere, rsc, alex.brainman
CC=golang-dev
https://golang.org/cl/
5447061
Rémy Oudompheng [Mon, 12 Dec 2011 21:08:32 +0000 (16:08 -0500)]
gc: fix wrong arguments to error message for switches.
Fixes #2502.
R=golang-dev, rsc
CC=golang-dev, remy
https://golang.org/cl/
5472062
Robert Hencke [Mon, 12 Dec 2011 21:08:29 +0000 (16:08 -0500)]
time: gob marshaler for Time
Addresses issue 2526
R=rsc, r
CC=golang-dev
https://golang.org/cl/
5448114
Charles L. Dorian [Mon, 12 Dec 2011 20:51:11 +0000 (15:51 -0500)]
math: fix special cases in Nextafter
Nextafter(0, -1) != -0.
R=rsc, golang-dev
CC=golang-dev
https://golang.org/cl/
5467060
Christopher Nielsen [Mon, 12 Dec 2011 20:42:11 +0000 (15:42 -0500)]
ld/6l/8l: First pass at changes to the linker to support NetBSD binaries.
This will not currently create valid NetBSD binaries because NetBSD requires
an ELF note section to run, otherwise the kernel will throw ENOEXEC. I was
unable to determine an elegant way to add the section, so I am submitting
what I have.
References:
http://www.netbsd.org/docs/kernel/elf-notes.html
http://mail-index.netbsd.org/netbsd-bugs/2001/08/03/0012.html
R=rsc
CC=golang-dev
https://golang.org/cl/
5472049
Christopher Nielsen [Mon, 12 Dec 2011 20:42:06 +0000 (15:42 -0500)]
build: Changes to the build infrastructure for NetBSD.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/
5476048
Lucio De Re [Mon, 12 Dec 2011 20:42:02 +0000 (15:42 -0500)]
gc: add varargck for %lN
R=golang-dev
CC=golang-dev, rsc
https://golang.org/cl/
5476049
Russ Cox [Mon, 12 Dec 2011 20:41:54 +0000 (15:41 -0500)]
gc: allow colon in //line file name
Assume last colon introduces line number.
Fixes #2543.
R=ken2
CC=golang-dev
https://golang.org/cl/
5485047
Rob Pike [Mon, 12 Dec 2011 20:26:56 +0000 (12:26 -0800)]
doc/go1: the simpler package changes
R=golang-dev, fullung, dsymonds, r, adg
CC=golang-dev
https://golang.org/cl/
5477056
Roger Peppe [Mon, 12 Dec 2011 20:22:55 +0000 (15:22 -0500)]
archive/zip: make zip understand os.FileMode.
Fixes implicit dependency on underlying os file modes.
R=rsc, r, n13m3y3r, gustavo, adg
CC=golang-dev
https://golang.org/cl/
5440130
Ian Lance Taylor [Mon, 12 Dec 2011 18:40:15 +0000 (10:40 -0800)]
net/http: make test remove temporary file and directory
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/
5486044
Taru Karttunen [Mon, 12 Dec 2011 14:58:04 +0000 (09:58 -0500)]
crypto/aes: Made faster by eliminating some indirection
Made te and td arrays into variables te0-3 and td0-3,
which improves performance from 7000ns/op to 5800.
R=rsc, rogpeppe, agl
CC=golang-dev
https://golang.org/cl/
5449077
Andrew Gerrand [Mon, 12 Dec 2011 05:14:38 +0000 (16:14 +1100)]
doc: remove file.go from run (fix windows build)
R=golang-dev, r, alex.brainman, r
CC=golang-dev
https://golang.org/cl/
5479069
Rob Pike [Mon, 12 Dec 2011 05:03:49 +0000 (21:03 -0800)]
doc/go_tutorial: make clear the file example is Unix-specific
Fixes #2553.
R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/
5472074
Andrew Balholm [Mon, 12 Dec 2011 02:18:01 +0000 (13:18 +1100)]
html: don't ignore whitespace in or after framesets
Pass tests6.dat, test 7:
<frameset></frameset>
foo
| <html>
| <head>
| <frameset>
| "
"
Also pass tests through test 12:
<form><form>
R=nigeltao
CC=golang-dev
https://golang.org/cl/
5480061
Andrew Gerrand [Mon, 12 Dec 2011 02:15:29 +0000 (13:15 +1100)]
doc: add Defer, Panic, and Recover article
Originally published on The Go Programming Language Blog, August 4 2010.
http://blog.golang.org/2010/08/defer-panic-and-recover.html
Update #2547
R=golang-dev, r, r
CC=golang-dev
https://golang.org/cl/
5479053
Rob Pike [Sun, 11 Dec 2011 17:29:44 +0000 (09:29 -0800)]
net/http: further simplify example program
(should have caught this in review.)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/
5478066
Joel Sing [Sun, 11 Dec 2011 17:25:09 +0000 (09:25 -0800)]
exp/norm: fix rune/int types in test
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5472067
Lucio De Re [Sun, 11 Dec 2011 17:23:17 +0000 (09:23 -0800)]
Housekeeping: Cleaning up the clean-up process.
src/clean.bash:
Add clean-ups for previously overlooked directories.
doc/codelab/wiki/Makefile:
Dropped "index.html" from CLEANFILES so it will not be
deleted on cleaning.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5476050
Lucio De Re [Sun, 11 Dec 2011 17:21:53 +0000 (09:21 -0800)]
pkg/runtime/Makefile: sorted object module names.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5479060
Olivier Duperray [Sun, 11 Dec 2011 17:11:57 +0000 (09:11 -0800)]
net/http: fix trivial example server
R=golang-dev, r, r
CC=golang-dev
https://golang.org/cl/
5479061
Robert Hencke [Sat, 10 Dec 2011 22:42:29 +0000 (14:42 -0800)]
gotest: use build.ArchChar()
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5480060
Hector Chu [Sat, 10 Dec 2011 21:55:38 +0000 (21:55 +0000)]
time: fix Time.Add
R=rsc, r
CC=golang-dev
https://golang.org/cl/
5448121
Robert Hencke [Sat, 10 Dec 2011 18:04:33 +0000 (10:04 -0800)]
spec: adjust complex constant example
Fixes https://golang.org/cl/
5444053 /#msg41
R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/
5478058
Robert Hencke [Sat, 10 Dec 2011 02:02:23 +0000 (13:02 +1100)]
pkg: adjust "the a" in comments
R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/
5476055
Rob Pike [Fri, 9 Dec 2011 22:24:51 +0000 (14:24 -0800)]
expvar: fix typo in Publish documentation
Found and fixed by bketelsen@gmail.com.
Not worth making him a CONTRIBUTOR to delete one character.
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/
5476054
Rob Pike [Fri, 9 Dec 2011 22:12:51 +0000 (14:12 -0800)]
doc/go1: syscalls, strconv
R=rsc
CC=golang-dev
https://golang.org/cl/
5472054
Russ Cox [Fri, 9 Dec 2011 19:58:28 +0000 (14:58 -0500)]
gc: 0 expected bugs
Now that Luuk's qualified exporting code
is in, fixing this bug is trivial.
R=ken2
CC=golang-dev
https://golang.org/cl/
5479048
Rob Pike [Fri, 9 Dec 2011 18:47:36 +0000 (10:47 -0800)]
html/template: make Must work
Fixes #2545.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/
5475054
Russ Cox [Fri, 9 Dec 2011 16:59:21 +0000 (11:59 -0500)]
gc: fix another blank bug
R=ken2
CC=golang-dev
https://golang.org/cl/
5478051
Rob Pike [Fri, 9 Dec 2011 16:31:57 +0000 (08:31 -0800)]
doc/go1: the rest of the language changes
R=rsc
CC=golang-dev
https://golang.org/cl/
5478047
Rob Pike [Fri, 9 Dec 2011 16:31:04 +0000 (08:31 -0800)]
tmpltohtml: feature for easier snippet extraction
Lines that end with OMIT are omitted from the output.
A comment such as
// Example stops here. OMIT
can be used as a marker but not appear in the output.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/
5477050
Russ Cox [Fri, 9 Dec 2011 13:28:17 +0000 (08:28 -0500)]
gc: resolve built-ins to built-in symbol
R=lvd
CC=golang-dev
https://golang.org/cl/
5480049
Russ Cox [Fri, 9 Dec 2011 13:03:51 +0000 (08:03 -0500)]
gc: minor changes for inlining
Copied from
5400043 since they stand alone from inlining.
R=lvd
CC=golang-dev
https://golang.org/cl/
5479046
Russ Cox [Fri, 9 Dec 2011 05:13:19 +0000 (00:13 -0500)]
spec: examples of untyped boolean, string constants
This is a spec correction, not a language change.
The implementations have behaved like this for years
(and there are tests to that effect), and elsewhere in
the spec true and false are defined to be untyped
boolean constants.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5477047
Russ Cox [Fri, 9 Dec 2011 05:12:49 +0000 (00:12 -0500)]
spec: remove redundant, outdated definition of default literal types
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5480047
Russ Cox [Fri, 9 Dec 2011 05:12:07 +0000 (00:12 -0500)]
gc: rune is now an alias for int32
R=ken2
CC=golang-dev
https://golang.org/cl/
5467049
Russ Cox [Fri, 9 Dec 2011 05:11:43 +0000 (00:11 -0500)]
spec: rune is now an alias for int32
R=golang-dev, dsymonds, r
CC=golang-dev
https://golang.org/cl/
5467048
Russ Cox [Fri, 9 Dec 2011 04:20:21 +0000 (23:20 -0500)]
exp/types: fix linux build
I don't understand why it was only broken on Linux
TBR=gri
CC=golang-dev
https://golang.org/cl/
5479045
Russ Cox [Fri, 9 Dec 2011 03:43:31 +0000 (22:43 -0500)]
gc: fix export of '\'' and '\\' constants
Fixes Windows build.
R=ken2
CC=golang-dev
https://golang.org/cl/
5472046
Charles L. Dorian [Fri, 9 Dec 2011 03:27:14 +0000 (22:27 -0500)]
spec: fix typo in example comment
R=rsc, golang-dev
CC=golang-dev
https://golang.org/cl/
5475046
Russ Cox [Fri, 9 Dec 2011 03:08:03 +0000 (22:08 -0500)]
update tree for new default type rule
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/
5448091
Russ Cox [Fri, 9 Dec 2011 03:07:43 +0000 (22:07 -0500)]
gc: implement character constant type rules
R=ken2
CC=golang-dev
https://golang.org/cl/
5444054
Charles L. Dorian [Fri, 9 Dec 2011 03:06:33 +0000 (22:06 -0500)]
math: special cases for Pow10; delete BUG
R=rsc, golang-dev
CC=golang-dev
https://golang.org/cl/
5477046
Russ Cox [Fri, 9 Dec 2011 02:48:19 +0000 (21:48 -0500)]
spec: var x = 'a' defaults to type rune
R=gri, r, r, adg, iant, ken
CC=golang-dev
https://golang.org/cl/
5444053
Rob Pike [Fri, 9 Dec 2011 00:39:05 +0000 (16:39 -0800)]
doc/go1: most of the simple language changes
R=rsc, adg, r
CC=golang-dev
https://golang.org/cl/
5477044
Alex Brainman [Fri, 9 Dec 2011 00:12:03 +0000 (11:12 +1100)]
syscall: allow for mksyscall_windows.pl to be used outside of syscall
this change should have been part of
fafcd328da73
R=golang-dev, bsiegert
CC=golang-dev
https://golang.org/cl/
5462045
Alex Brainman [Fri, 9 Dec 2011 00:00:49 +0000 (11:00 +1100)]
misc/cgo/testso: do not leave out file behind
R=golang-dev, dvyukov
CC=golang-dev
https://golang.org/cl/
5461044
Benny Siegert [Thu, 8 Dec 2011 23:42:34 +0000 (10:42 +1100)]
syscall: Remove obsolete Errstr call from commented-out example.
syscall_windows.go contains a small demo, which calls the obsolete
syscall.Errstr function.
R=golang-dev, alex.brainman
CC=golang-dev
https://golang.org/cl/
5475044
Charles L. Dorian [Thu, 8 Dec 2011 22:07:13 +0000 (17:07 -0500)]
math: document more special cases
Acosh, Asinh, Atanh, Ceil, Floor, Trunc, Mod and Remainder affected. These changes add some non-finite arguments and results (and -0.0 results).
R=rsc, golang-dev
CC=golang-dev
https://golang.org/cl/
5469046
Adam Langley [Thu, 8 Dec 2011 21:46:19 +0000 (16:46 -0500)]
crypto/dsa: don't truncate input hashes.
Although FIPS 186-3 says that we should truncate the hashes, at least
one other library (libgcrypt) doesn't. This means that it's impossible
to interoperate with code using gcrypt if we enforce the truncation
inside of crypto/dsa.
This change shouldn't actually affect anything because nearly
everybody pairs DSA with SHA1, which doesn't need to be truncated in
either case.
R=golang-dev, bradfitz, rsc
CC=golang-dev
https://golang.org/cl/
5471043
Rob Pike [Thu, 8 Dec 2011 19:35:28 +0000 (11:35 -0800)]
doc/go1: document rearranged package hierarchy
Some exciting HTML and CSS here.
R=remyoudompheng, rsc, r
CC=golang-dev
https://golang.org/cl/
5460047
Rob Pike [Thu, 8 Dec 2011 19:26:49 +0000 (11:26 -0800)]
tmpltohtml: put a DO NOT EDIT mark automatically in the output
R=r, rsc, r
CC=golang-dev
https://golang.org/cl/
5469045
Rob Pike [Thu, 8 Dec 2011 18:15:53 +0000 (10:15 -0800)]
html/template: clean up locking for ExecuteTemplate
R=mikesamuel, rogpeppe
CC=golang-dev
https://golang.org/cl/
5448137
Andrea Spadaccini [Thu, 8 Dec 2011 06:12:08 +0000 (15:12 +0900)]
syscall: add constants for flock() system call under Linux.
The values have been generated only for the i386 and amd64 architectures.
R=golang-dev, mikioh.mikioh, dsymonds
CC=bradfitz, dsymonds, golang-dev
https://golang.org/cl/
5452060
David Symonds [Thu, 8 Dec 2011 05:53:39 +0000 (16:53 +1100)]
CONTRIBUTORS: Andrea Spadaccini (Google CLA)
R=golang-dev, rsc
CC=golang-dev, spadaccio
https://golang.org/cl/
5460046
David Symonds [Thu, 8 Dec 2011 04:42:44 +0000 (15:42 +1100)]
time: use Duration for AfterFunc.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/
5465043
Russ Cox [Thu, 8 Dec 2011 04:38:32 +0000 (23:38 -0500)]
gc: rename %union field name from lint to i
#define lint has special meaning to Bison;
having a field named lint conflicts with that.
R=ken2
CC=golang-dev
https://golang.org/cl/
5462044
Alex Brainman [Thu, 8 Dec 2011 01:07:21 +0000 (12:07 +1100)]
syscall: return error, not uintptr, when function returns error
R=rsc
CC=golang-dev
https://golang.org/cl/
5450119
Rob Pike [Thu, 8 Dec 2011 00:11:17 +0000 (16:11 -0800)]
doc/go1: map deletion
This CL is in part a proposal for how to write these sections:
- Brief discussion of change
- No attempt to analyze the thinking about it
- Old code
- New code, runnable if possible
- How to update old programs
R=golang-dev, remyoudompheng, gri, adg
CC=golang-dev
https://golang.org/cl/
5454044
Andrew Gerrand [Wed, 7 Dec 2011 23:31:06 +0000 (10:31 +1100)]
gobuilder: goinstall packages after building go tree
R=rsc
CC=golang-dev
https://golang.org/cl/
5450100
Robert Griesemer [Wed, 7 Dec 2011 22:45:45 +0000 (14:45 -0800)]
strconv: fix documentation
Also: minor performance fix for large precision results.
benchmark old ns/op new ns/op delta
strconv_test.BenchmarkFormatFloatDecimal 2734 2734 +0.00%
strconv_test.BenchmarkFormatFloat 3141 3139 -0.06%
strconv_test.BenchmarkFormatFloatExp 8970 8989 +0.21%
strconv_test.BenchmarkFormatFloatBig 3228 3208 -0.62%
Fixes #2535.
R=rsc
CC=golang-dev
https://golang.org/cl/
5435089
Rob Pike [Wed, 7 Dec 2011 22:33:37 +0000 (14:33 -0800)]
doc: skeleton for release note document
No content yet other than titles and an introductory paragraph.
Once this is in, content can arise as separate manageable CLs.
R=rsc
CC=golang-dev
https://golang.org/cl/
5435090
Rémy Oudompheng [Wed, 7 Dec 2011 21:18:50 +0000 (16:18 -0500)]
gc: keep pointer to original node in constant rewrites.
This allows printing meaningful expressions in error messages
instead of evaluated constants.
Fixes #2276.
R=golang-dev, rsc
CC=golang-dev, remy
https://golang.org/cl/
5432082
David Symonds [Wed, 7 Dec 2011 21:08:00 +0000 (08:08 +1100)]
exp/sql: simplify some string conversions.
R=bradfitz
CC=golang-dev
https://golang.org/cl/
5451112
Russ Cox [Wed, 7 Dec 2011 20:48:55 +0000 (15:48 -0500)]
gc: fix spurious typecheck loop in &composite literal
Fixes #2538.
R=ken2
CC=golang-dev
https://golang.org/cl/
5449114
Russ Cox [Wed, 7 Dec 2011 20:30:01 +0000 (15:30 -0500)]
bytes: lost edit from earlier CL
R=iant
CC=golang-dev
https://golang.org/cl/
5450125
Russ Cox [Wed, 7 Dec 2011 20:09:56 +0000 (15:09 -0500)]
bytes: faster Count, Index, Equal
Benchmarks are from GOARCH=amd64 on a MacPro5,1.
benchmark old MB/s new MB/s speedup
bytes_test.BenchmarkEqual32 452.89 891.07 1.97x
bytes_test.BenchmarkEqual4K 852.71 1700.44 1.99x
bytes_test.BenchmarkEqual4M 841.53 1587.93 1.89x
bytes_test.BenchmarkEqual64M 838.22 1578.14 1.88x
bytes_test.BenchmarkIndex32 58.02 48.99 0.84x
bytes_test.BenchmarkIndex4K 48.26 41.32 0.86x
bytes_test.BenchmarkIndex4M 48.20 41.24 0.86x
bytes_test.BenchmarkIndex64M 48.08 41.21 0.86x
bytes_test.BenchmarkIndexEasy32 410.04 546.82 1.33x
bytes_test.BenchmarkIndexEasy4K 849.26 14257.37 16.79x
bytes_test.BenchmarkIndexEasy4M 854.54 17222.15 20.15x
bytes_test.BenchmarkIndexEasy64M 843.57 11060.40 13.11x
bytes_test.BenchmarkCount32 57.24 50.68 0.89x
bytes_test.BenchmarkCount4K 48.19 41.82 0.87x
bytes_test.BenchmarkCount4M 48.18 41.74 0.87x
bytes_test.BenchmarkCount64M 48.17 41.71 0.87x
bytes_test.BenchmarkCountEasy32 433.11 547.44 1.26x
bytes_test.BenchmarkCountEasy4K 1130.59 14194.06 12.55x
bytes_test.BenchmarkCountEasy4M 1131.23 17231.18 15.23x
bytes_test.BenchmarkCountEasy64M 1111.40 11068.88 9.96x
The non-easy Count/Index benchmarks are a worst case input.
regexp.BenchmarkMatchEasy0_32 237.46 221.47 0.93x
regexp.BenchmarkMatchEasy0_1K 553.53 1019.72 1.84x
regexp.BenchmarkMatchEasy0_32K 693.99 1672.06 2.41x
regexp.BenchmarkMatchEasy0_1M 688.72 1611.68 2.34x
regexp.BenchmarkMatchEasy0_32M 680.70 1565.05 2.30x
regexp.BenchmarkMatchEasy1_32 165.56 243.08 1.47x
regexp.BenchmarkMatchEasy1_1K 336.45 496.32 1.48x
regexp.BenchmarkMatchEasy1_32K 302.80 425.63 1.41x
regexp.BenchmarkMatchEasy1_1M 300.42 414.20 1.38x
regexp.BenchmarkMatchEasy1_32M 299.64 413.47 1.38x
R=golang-dev, r, iant
CC=golang-dev
https://golang.org/cl/
5451116
Russ Cox [Wed, 7 Dec 2011 20:03:05 +0000 (15:03 -0500)]
regexp: avoid allocation of input interface
Matters most for small inputs, because there is no real work
to amortize the allocation effort against.
benchmark old ns/op new ns/op delta
BenchmarkLiteral 613 473 -22.84%
BenchmarkNotLiteral 4981 4931 -1.00%
BenchmarkMatchClass 7289 7122 -2.29%
BenchmarkMatchClass_InRange 6618 6663 +0.68%
BenchmarkReplaceAll 7843 7233 -7.78%
BenchmarkAnchoredLiteralShortNonMatch 329 228 -30.70%
BenchmarkAnchoredLiteralLongNonMatch 322 228 -29.19%
BenchmarkAnchoredShortMatch 838 715 -14.68%
BenchmarkAnchoredLongMatch 824 715 -13.23%
benchmark old MB/s new MB/s speedup
BenchmarkMatchEasy0_32 119.73 196.61 1.64x
BenchmarkMatchEasy0_1K 540.58 538.33 1.00x
BenchmarkMatchEasy0_32K 732.57 714.00 0.97x
BenchmarkMatchEasy0_1M 726.44 708.36 0.98x
BenchmarkMatchEasy0_32M 707.77 691.45 0.98x
BenchmarkMatchEasy1_32 102.12 136.11 1.33x
BenchmarkMatchEasy1_1K 298.31 307.04 1.03x
BenchmarkMatchEasy1_32K 273.56 274.43 1.00x
BenchmarkMatchEasy1_1M 268.42 269.23 1.00x
BenchmarkMatchEasy1_32M 266.15 267.34 1.00x
BenchmarkMatchMedium_32 2.53 3.38 1.34x
BenchmarkMatchMedium_1K 9.37 9.57 1.02x
BenchmarkMatchMedium_32K 9.29 9.67 1.04x
BenchmarkMatchMedium_1M 9.42 9.66 1.03x
BenchmarkMatchMedium_32M 9.41 9.62 1.02x
BenchmarkMatchHard_32 6.66 6.75 1.01x
BenchmarkMatchHard_1K 6.81 6.85 1.01x
BenchmarkMatchHard_32K 6.79 6.85 1.01x
BenchmarkMatchHard_1M 6.82 6.83 1.00x
BenchmarkMatchHard_32M 6.80 6.80 1.00x
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5453076
Russ Cox [Wed, 7 Dec 2011 20:00:44 +0000 (15:00 -0500)]
test: make array smaller in nilptr test
Fixes #2314.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5437154
Olivier Duperray [Wed, 7 Dec 2011 20:00:38 +0000 (15:00 -0500)]
godoc: <pre> must not occur inside <p>
Fixes #2532
R=golang-dev, dr.volker.dobler, rsc
CC=golang-dev
https://golang.org/cl/
5450115
Russ Cox [Wed, 7 Dec 2011 20:00:32 +0000 (15:00 -0500)]
A+C: Olivier Duperray, Taru Karttunen (individual CLA)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/
5451121
Charles L. Dorian [Wed, 7 Dec 2011 19:52:17 +0000 (14:52 -0500)]
math: document special-cases behavior for Dim, Max and Min
Max returns +Inf if x or y is +Inf; else it returns NaN if either x or y is NaN. Max(-0, -0) returns -0.
Min returns -Inf if x or y is -Inf; else it returns NaN if either x or y is NaN. Min(+0, -0) returns -0.
Dim(+Inf, +Inf) = NaN, Dim(-Inf, -Inf) = NaN and Dim(NaN, anything) = NaN.
Also, change "conditions" to "cases" for Sin (missed it in previous CL).
R=rsc, dave
CC=golang-dev
https://golang.org/cl/
5437137
Peter Mundy [Wed, 7 Dec 2011 19:47:25 +0000 (14:47 -0500)]
time: fix daysIn for December
daysBefore[12+1]: index out of range
time.December and Windows SYSTEMTIME.wMonth
are 12 for December.
R=rsc, dsymonds
CC=golang-dev
https://golang.org/cl/
5448130
Robert Griesemer [Wed, 7 Dec 2011 18:30:27 +0000 (10:30 -0800)]
strconv: faster float conversion
- added AppendFloatX benchmarks
- 2% to 13% better performance
- check for illegal bitSize
benchmark old ns/op new ns/op delta
strconv_test.BenchmarkFormatFloatDecimal 2993 2733 -8.69%
strconv_test.BenchmarkFormatFloat 3384 3141 -7.18%
strconv_test.BenchmarkFormatFloatExp 9192 9010 -1.98%
strconv_test.BenchmarkFormatFloatBig 3279 3207 -2.20%
strconv_test.BenchmarkAppendFloatDecimal 2837 2478 -12.65%
strconv_test.BenchmarkAppendFloat 3196 2928 -8.39%
strconv_test.BenchmarkAppendFloatExp 9028 8773 -2.82%
strconv_test.BenchmarkAppendFloatBig 3151 2782 -11.71%
R=rsc, bradfitz
CC=golang-dev
https://golang.org/cl/
5448122
Robert Griesemer [Wed, 7 Dec 2011 18:30:08 +0000 (10:30 -0800)]
misc/benchcmp: don't require "Benchmark" at beginning of line
Output is package_name.BenchmarkXXX.
R=rsc
CC=golang-dev
https://golang.org/cl/
5440123
Scott Lawrence [Wed, 7 Dec 2011 16:50:39 +0000 (11:50 -0500)]
ld: fix memory leaks
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/
5434068
Rémy Oudompheng [Wed, 7 Dec 2011 16:45:30 +0000 (11:45 -0500)]
gc: more accurate description of -w and -W switches.
The -w switch actually prints steps of the syntax tree walks
while -W prints a summary before and after the walk.
R=golang-dev, rsc
CC=golang-dev, remy
https://golang.org/cl/
5444049
Gustav Paul [Wed, 7 Dec 2011 14:58:22 +0000 (09:58 -0500)]
exp/ssh: Have Wait() return an *ExitError
I added the clientChan's msg channel to the list of channels that are closed in mainloop when the server sends a channelCloseMsg.
I added an ExitError type that wraps a Waitmsg similar to that of os/exec. I fill ExitStatus with the data returned in the 'exit-status' channel message and Msg with the data returned in the 'exit-signal' channel message.
Instead of having Wait() return on the first 'exit-status'/'exit-signal' I have it return an ExitError containing the status and signal when the clientChan's msg channel is closed.
I added two tests cases to session_test.go that test for exit status 0 (in which case Wait() returns nil) and exit status 1 (in which case Wait() returns an ExitError with ExitStatus 1)
R=dave, agl, rsc, golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/
5452051
Dmitriy Vyukov [Wed, 7 Dec 2011 13:53:17 +0000 (16:53 +0300)]
ld: increase default stack size on Windows for cgo
Fixes #2437.
R=rsc, hectorchu, mattn.jp, alex.brainman, jdpoirier, snaury, n13m3y3r
CC=golang-dev
https://golang.org/cl/
5371049
Andrew Gerrand [Wed, 7 Dec 2011 02:38:12 +0000 (13:38 +1100)]
tag weekly.2011-12-06
R=bradfitz
CC=golang-dev
https://golang.org/cl/
5450118
Andrew Gerrand [Wed, 7 Dec 2011 02:33:59 +0000 (13:33 +1100)]
doc: fix weekly.2011-12-06 release notes typo
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/
5453072
Andrew Gerrand [Wed, 7 Dec 2011 02:16:02 +0000 (13:16 +1100)]
tag weekly.2011-12-06
R=r
CC=golang-dev
https://golang.org/cl/
5440125
Andrew Gerrand [Wed, 7 Dec 2011 02:15:10 +0000 (13:15 +1100)]
weekly.2011-12-06
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
5453070
Brad Fitzpatrick [Wed, 7 Dec 2011 00:38:02 +0000 (16:38 -0800)]
http: make Transport warning about connections closing more accurate
It was fragile and non-portable, and then became spammy with
the os.EINVAL removal. Now it just uses the length of the
Peek return value instead.
R=golang-dev, alex.brainman
CC=golang-dev
https://golang.org/cl/
5453065
Adam Langley [Tue, 6 Dec 2011 23:25:14 +0000 (18:25 -0500)]
crypto: allocate less.
The code in hash functions themselves could write directly into the
output buffer for a savings of about 50ns. But it's a little ugly so I
wasted a copy.
R=bradfitz
CC=golang-dev
https://golang.org/cl/
5440111
Dave Cheney [Tue, 6 Dec 2011 23:13:20 +0000 (18:13 -0500)]
exp/ssh: cleanup client auth tests
This CL cleans up the client auth tests, making the
individual test body more manageable.
Also, adds tests for rsa and dsa key negotiation.
Finally, remove the package level use of the variable
strings, which avoids conflicting with the strings pkg.
R=gustav.paul, agl, n13m3y3r, rsc
CC=golang-dev
https://golang.org/cl/
5447049
Andrew Gerrand [Tue, 6 Dec 2011 22:41:20 +0000 (09:41 +1100)]
goinstall: honour -install=false flag when -make=true
R=rsc
CC=golang-dev
https://golang.org/cl/
5448124
Robert Griesemer [Tue, 6 Dec 2011 21:54:22 +0000 (13:54 -0800)]
strconv: squeezed a bit more out of int/uint formatting
- less code
- slightly better performance (0-4%)
R=r, rsc
CC=golang-dev
https://golang.org/cl/
5448120
Adam Langley [Tue, 6 Dec 2011 21:42:48 +0000 (16:42 -0500)]
crypto/x509: if a parent cert has a raw subject, use it.
This avoids a problem when creating certificates with parents that
were produce by other code: the Go structures don't contain all the
information about the various ASN.1 string types etc and so that
information would otherwise be lost.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/
5453067
Rob Pike [Tue, 6 Dec 2011 20:47:12 +0000 (12:47 -0800)]
html/template: simplify ExecuteTemplate a little
Allow the text template to handle the error case of no template
with the given name.
Simplification suggested by Mike Samuel.
R=mikesamuel
CC=golang-dev
https://golang.org/cl/
5437147
Rob Pike [Tue, 6 Dec 2011 16:40:16 +0000 (08:40 -0800)]
fmt: benchmark floating point.
mallocs per Sprintf("%x"): 1
mallocs per Sprintf("%g"): 4
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/
5449106
Maxim Pimenov [Tue, 6 Dec 2011 16:16:39 +0000 (08:16 -0800)]
cgo: fix typo in the documentation
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/
5448115
Robert Griesemer [Tue, 6 Dec 2011 16:15:45 +0000 (08:15 -0800)]
strconv: 34% to 63% faster conversions
(Note that the Int and Uint benchmarks use different test sets
and thus cannot be compared against each other. Int and Uint
conversions are approximately the same speed).
Before (best of 3 runs):
strconv_test.BenchmarkFormatInt 100000 15636 ns/op
strconv_test.BenchmarkAppendInt 100000 18930 ns/op
strconv_test.BenchmarkFormatUint 500000 4392 ns/op
strconv_test.BenchmarkAppendUint 500000 5152 ns/op
After (best of 3 runs):
strconv_test.BenchmarkFormatInt 200000 10070 ns/op (-36%)
strconv_test.BenchmarkAppendInt 200000 7097 ns/op (-63%)
strconv_test.BenchmarkFormatUint
1000000 2893 ns/op (-34%)
strconv_test.BenchmarkAppendUint 500000 2462 ns/op (-52%)
R=r, rsc, r
CC=golang-dev
https://golang.org/cl/
5449093