Age | Commit message (Collapse) | Author | Files | Lines |
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/199070
Committer: Russ Cox <rsc@golang.org>
|
|
R=kaib
CC=golang-dev
http://codereview.appspot.com/207062
|
|
not trying to be secure, just not repetitive
(sending with the same id repeatedly makes
some resolvers stop replying.)
eventually we'll replace this with linking against
the system's native resolver.
R=p
CC=golang-dev
http://codereview.appspot.com/207051
|
|
R=kaib
CC=golang-dev
http://codereview.appspot.com/206059
|
|
* specialize sweepspan as sweepspan0 and sweepspan1.
* in sweepspan1, inline "free" to avoid expensive mlookup.
R=iant
CC=golang-dev
http://codereview.appspot.com/206060
|
|
R=iant
CC=golang-dev
http://codereview.appspot.com/207054
|
|
kernel32.dll functions
Fixes issue 586.
R=rsc
CC=golang-dev
http://codereview.appspot.com/203060
Committer: Russ Cox <rsc@golang.org>
|
|
Fixes issue 406.
R=adg
CC=golang-dev
http://codereview.appspot.com/207053
|
|
R=adg
CC=golang-dev
http://codereview.appspot.com/207050
|
|
R=adg
CC=golang-dev
http://codereview.appspot.com/207052
|
|
TBR=agl1
CC=golang-dev
http://codereview.appspot.com/207055
|
|
Added tests and benchmarks for Exp2 (special cases same
as Exp). Log1p also enhances speed of inverse hyperbolics.
R=rsc
CC=golang-dev
http://codereview.appspot.com/206058
Committer: Russ Cox <rsc@golang.org>
|
|
* add bit tracking finalizer status, avoiding getfinalizer lookup
* add ability to allocate uncleared memory
R=iant
CC=golang-dev
http://codereview.appspot.com/207044
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/186160
Committer: Russ Cox <rsc@golang.org>
|
|
apparently some versions of GNU make cannot
handle the %: %.$O rule. i don't understand why
and don't care enough to find out.
R=agl1
CC=golang-dev
http://codereview.appspot.com/206055
|
|
since they were causing a silent program exit (too many EPIPE's).
R=rsc
CC=golang-dev
http://codereview.appspot.com/204062
Committer: Russ Cox <rsc@golang.org>
|
|
function arguments.
R=rsc
CC=golang-dev
http://codereview.appspot.com/206054
|
|
R=iant
CC=golang-dev
http://codereview.appspot.com/206052
|
|
stab in the dark but plausible: the kernel does try to
return time zone information.
http://fxr.watson.org/fxr/source/kern/kern_time.c?v=FREEBSD8#L421
R=iant
CC=golang-dev
http://codereview.appspot.com/206053
|
|
avoid possibility of busy loop pounding on dashboard.
R=agl1
CC=golang-dev
http://codereview.appspot.com/206051
|
|
Add functions, tests and benchmarks. Fix typos in comments
in expm1 and hypot_386. Fix Acosh domain error in benchmark
test.
R=rsc
CC=golang-dev
http://codereview.appspot.com/204069
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/204067
Committer: Russ Cox <rsc@golang.org>
|
|
R=agl1
CC=golang-dev
http://codereview.appspot.com/207043
|
|
R=golang-dev, rsc
CC=golang-dev
http://codereview.appspot.com/206044
Committer: Russ Cox <rsc@golang.org>
|
|
R=agl1
CC=golang-dev
http://codereview.appspot.com/206047
|
|
finalize chan, to free OS X semaphore inside Lock.
os: finalize File, to close fd.
Fixes issue 503.
R=ken2
CC=golang-dev
http://codereview.appspot.com/204065
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/206043
|
|
gccgo gets this wrong at the moment.
R=rsc
CC=golang-dev
http://codereview.appspot.com/205044
|
|
add simple garbage collection benchmark.
R=iant
CC=golang-dev
http://codereview.appspot.com/204053
|
|
*l/*c -V will segfault on macos without this trivial fix.
R=adg
CC=golang-dev
http://codereview.appspot.com/205042
Committer: Andrew Gerrand <adg@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/204044
|
|
R=iant, rsc
CC=golang-dev
http://codereview.appspot.com/204068
Committer: Ian Lance Taylor <iant@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/203043
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/204061
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/203053
|
|
Averaged times (in microseconds) for drawing an 800x600 rectangle
are listed below. The summary is: around a 100x improvement.
draw.Draw call times were typically linear in the number of pixels
touched (i.e. drawing an 800x600 rectangle took 100x as much time as
drawing an 80x60 rectangle).
Before this change, there was only the general-but-slow code path.
When drawing any src with a 50%-opaque mask: 237300 us
When drawing any src with a nil mask: 50100 us
After this change, the 50%-opaque mask case is unchanged.
For an *image.RGBA dst and nil mask and...
...a uniform color (i.e. an image.ColorImage) src: 282 us
...another *image.RGBA src: 615 us.
For the curious, an intermediate implementation detected the special
cases but used simple nested for loops instead of the built-in copy
function. The respective times (compared to 282 and 615 for the
final implementation, or 50100 for the original) were 3110 and 3573.
Times were measured with 8g/8l on my laptop. I haven't tried gccgo
or other architectures.
R=r, rsc
CC=golang-dev
http://codereview.appspot.com/201048
|
|
bug251.go:11:2: error: invalid recursive interface
R=rsc
CC=golang-dev
http://codereview.appspot.com/204052
|
|
ddd1.go:16:10: error: argument 1 has incompatible type
ddd1.go:17:10: error: argument 1 has incompatible type
ddd1.go:15:10: error: floating point constant truncated to integer
R=rsc
CC=golang-dev
http://codereview.appspot.com/204048
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/203050
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/204042
|
|
Added special cases, tests and benchmarks for Atan2;
added 386 FPU version of Atan2.
R=rsc
CC=golang-dev
http://codereview.appspot.com/201068
Committer: Russ Cox <rsc@golang.org>
|
|
Go source outside $GOROOT.
If the argument is a path starting with / or ., disregard $GOROOT.
Also, disable the check for package name matching the directory,
which is counterproductive in this case.
Apologies for the violence to the code but we need some help documenting
Go code outside the standard repository.
R=gri
CC=golang-dev
http://codereview.appspot.com/201064
Committer: Rob Pike <r@golang.org>
|
|
* fix bug in benchmark collection: bad benchmark data key
meant that all the builders collided when writing data.
* report benchmarks even if make bench exits non-zero.
* graphical and json presentations
R=agl1
CC=golang-dev
http://codereview.appspot.com/201065
|
|
Marshalling:
* Fixes several silly bugs.
* Support the RawContents type.
* Support the RawValue type.
* Recurse into nested interface{}.
Both directions:
* Better handling of SETs. You can now tag an element in a
structure with "set" to get the correct tag for serialisation.
* For types that aren't in a structure, you can now name them
with "SET" on the end.
* SETs are no longer implicitly treated as SEQUENCEs.
R=rsc
CC=golang-dev
http://codereview.appspot.com/201049
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/201047
|
|
R=rsc, r
CC=golang-dev
http://codereview.appspot.com/198049
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/198044
Committer: Russ Cox <rsc@golang.org>
|
|
Also moved Modf from bits.go into modf.go and added timing tests.
R=rsc
CC=golang-dev
http://codereview.appspot.com/202042
Committer: Russ Cox <rsc@golang.org>
|
|
bug121.go:12:3: error: name list not allowed in interface type
bug121.go:16:2: error: expected signature or type name
semi1.go:10:76: error: unexpected semicolon or newline before ‘{’
semi1.go:10:5: error: reference to undefined name ‘x’
semi1.go:10:8: error: reference to undefined name ‘y’
semi1.go:12:3: error: reference to undefined name ‘z’
semi2.go:10:79: error: unexpected semicolon or newline before ‘{’
semi2.go:10:9: error: reference to undefined name ‘x’
semi3.go:10:79: error: unexpected semicolon or newline before ‘{’
semi3.go:10:6: error: reference to undefined name ‘x’
semi3.go:10:9: error: reference to undefined name ‘y’
semi3.go:10:12: error: reference to undefined name ‘z’
semi3.go:12:3: error: reference to undefined name ‘z’
semi4.go:11:2: error: unexpected semicolon or newline before ‘{’
semi4.go:10:6: error: reference to undefined name ‘x’
semi4.go:12:3: error: reference to undefined name ‘z’
semi5.go:10:1: error: unexpected semicolon or newline before ‘{’
semi7.go:11:2: error: unexpected semicolon or newline before ‘else’
semi7.go:10:5: error: reference to undefined name ‘x’
slice.go:9:11: error: missing lower bound in slice expression
slice.go:9:9: error: reference to undefined name ‘y’
slice.go:9:12: error: reference to undefined name ‘z’
R=rsc
CC=golang-dev
http://codereview.appspot.com/201061
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/202055
|