Age | Commit message (Collapse) | Author | Files | Lines |
|
asm_arm.s was using ldrex which does not work
on armv5. Tested on Sheevaplug.
R=rsc, kaib
CC=golang-dev
http://codereview.appspot.com/214049
Committer: Kai Backman <kaib@golang.org>
|
|
import and export
R=rsc
CC=golang-dev
http://codereview.appspot.com/214050
|
|
Fixes issue 287.
R=ken2
CC=golang-dev
http://codereview.appspot.com/215048
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/215042
|
|
only front-end compiler work.
best to do thin in 3 steps
1. frontend
2. backend
3. lib
R=rsc
CC=golang-dev
http://codereview.appspot.com/214042
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/213041
|
|
under repeated application of gofmt
R=agl, agl1
CC=golang-dev
http://codereview.appspot.com/212046
|
|
Fixes issue 602.
R=ken2
CC=golang-dev
http://codereview.appspot.com/212045
|
|
thanks to yglgogo for analysis.
Fixes issue 593.
R=rsc
CC=golang-dev
http://codereview.appspot.com/210044
|
|
R=r, rsc
CC=golang-dev
http://codereview.appspot.com/207096
|
|
Fixes issue 582.
Update issue 287
Status: Accepted
Bug fix was too intrusive; undo and reopen issue.
R=ken2
CC=golang-dev
http://codereview.appspot.com/209044
|
|
and complain about illegal UTF-8 code sequences
R=rsc
CC=golang-dev
http://codereview.appspot.com/209043
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/210043
|
|
R=ken2, ken3
CC=golang-dev
http://codereview.appspot.com/209041
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/207110
|
|
R=r
CC=golang-dev
http://codereview.appspot.com/207112
|
|
Fixes issue 596.
R=rsc
CC=golang-dev
http://codereview.appspot.com/206101
Committer: Rob Pike <r@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/206109
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/207111
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/207071
Committer: Russ Cox <rsc@golang.org>
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/206077
Committer: Russ Cox <rsc@golang.org>
|
|
Example use: godoc -path=/home/user1:/home/build/foo -http=:6666
will start a local godoc that maps urls starting with /pkg/user1 or
/pkg/foo to the respective roots specified in the path.
Missing: Handling of overlapping package directories, multiple
packages per directory.
R=rsc
CC=golang-dev
http://codereview.appspot.com/206078
|
|
directory:
- adjust ast.Package node and doc.PackageDoc correspondingly
- introduce parser.ParseFiles
R=rsc
CC=golang-dev
http://codereview.appspot.com/207087
|
|
Fixes issue 605.
R=rsc
CC=golang-dev
http://codereview.appspot.com/207108
|
|
R=ken2
CC=golang-dev
http://codereview.appspot.com/207106
|
|
Try to avoid infinite recursion if String fails due to
printing a bad type.
Add test for String method with named basic types.
R=r
CC=golang-dev
http://codereview.appspot.com/207102
|
|
R=adg
CC=golang-dev
http://codereview.appspot.com/207088
|
|
Fixes issue 580.
R=adg
CC=golang-dev
http://codereview.appspot.com/207086
|
|
Fixes issue 587.
R=ken2
CC=golang-dev
http://codereview.appspot.com/207085
|
|
Fixes issue 598.
R=adg
CC=golang-dev
http://codereview.appspot.com/206089
|
|
(implementation was swapped)
R=adg
CC=golang-dev, rsc
http://codereview.appspot.com/207069
|
|
The Mapping object implements a flexible
mapping of relative to absolute paths and
vice versa.
R=rsc
CC=golang-dev
http://codereview.appspot.com/206067
|
|
R=rsc, ken2
CC=golang-dev
http://codereview.appspot.com/204064
|
|
because free needs to mark the block as freed to
coordinate with the garbage collector.
(in C++ free can blindly put the block on the free list,
no questions asked, so the cache saves some work.)
R=iant
CC=golang-dev
http://codereview.appspot.com/206069
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/203062
|
|
R=rsc
CC=golang-dev
http://codereview.appspot.com/199070
Committer: Russ Cox <rsc@golang.org>
|
|
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
|
|
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>
|
|
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
|