summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-02-19remove absolute paths from search resultsRobert Griesemer1-2/+2
R=adg CC=golang-dev http://codereview.appspot.com/216053
2010-02-19http: unified body transfer (read & write) logic in http.Request/Response.Petar Maymounkov6-348/+482
Compliance issue addressed here: POST requests carrying form data are required to use "identity" transfer encoding by common nginx and apache server configurations, e.g. wordpress.com (and many others). So, Request needed to be able to send non-chunked encodings. Thus, Request is extended to support identity and chunked encodings, like Response. Since the Read() and Write() logic are shared by both (and are quite long), it is exported in a separate file transfer.go. R=rsc CC=golang-dev http://codereview.appspot.com/217048 Committer: Russ Cox <rsc@golang.org>
2010-02-19http: add Pending method to ServerConn, ClientConnPetar Maymounkov1-1/+19
R=rsc CC=golang-dev http://codereview.appspot.com/216052 Committer: Russ Cox <rsc@golang.org>
2010-02-19dashboard: lots of caching to avoid datastore queriesRuss Cox2-118/+143
reorganize benchmark computation so that it is incremental. if it times out, it doesn't lose the pieces it already computed, so that next time it has a fighting chance to finish. R=agl1, agl CC=golang-dev http://codereview.appspot.com/216046
2010-02-19crypto/x509: support certificate creation.Adam Langley2-2/+280
R=rsc CC=golang-dev http://codereview.appspot.com/212041
2010-02-19http: add DumpRequest, DumpResponse, for debuggingPetar Maymounkov2-0/+77
R=rsc CC=golang-dev http://codereview.appspot.com/206050 Committer: Russ Cox <rsc@golang.org>
2010-02-18http: persistent connection objectsPetar Maymounkov2-0/+286
R=rsc CC=golang-dev http://codereview.appspot.com/203051 Committer: Russ Cox <rsc@golang.org>
2010-02-18http: do not edit Response.ContentLength in Response.WritePetar Maymounkov1-6/+7
R=rsc CC=golang-dev http://codereview.appspot.com/207061 Committer: Russ Cox <rsc@golang.org>
2010-02-18gc: double-initializationRuss Cox1-1/+0
R=ken2 CC=golang-dev http://codereview.appspot.com/217044
2010-02-18combined pchw and embedded into tiny. added section on arm to READMEKai Backman21-142/+58
R=rsc CC=golang-dev http://codereview.appspot.com/194151 Committer: Russ Cox <rsc@golang.org>
2010-02-18math: add Cbrt and Sincos; x87 versions of Sincos, Frexp, LdexpCharles L. Dorian13-53/+311
Added special condition and benchmarks for Cbrt, Sincos. Took Frexp and Ldexp out of bits.go. R=rsc CC=golang-dev http://codereview.appspot.com/206084 Committer: Russ Cox <rsc@golang.org>
2010-02-188a/8l: Added FCMOVcc instructionsEvan Shaw4-0/+40
Thanks to Charles Dorian for the help. R=rsc CC=Charlie Dorian, golang-dev http://codereview.appspot.com/207049 Committer: Russ Cox <rsc@golang.org>
2010-02-18xml: allow unquoted attribute values in non-Strict modeAmrut Joshi2-8/+55
HTML4 standard supports unquoted attibute values in certain cases (http://www.w3.org/TR/REC-html40/intro/sgmltut.html#h-3.2.2). R=rsc CC=golang-dev http://codereview.appspot.com/207095 Committer: Russ Cox <rsc@golang.org>
2010-02-18A+C: add Amrut Joshi (individual CLA)Russ Cox2-0/+2
R=r CC=golang-dev http://codereview.appspot.com/216047
2010-02-18http: avoid server crash on malformed client requestFumitoshi Ukai2-8/+37
R=r, rsc CC=golang-dev http://codereview.appspot.com/206079 Committer: Russ Cox <rsc@golang.org>
2010-02-18exec: add dir argument to Run.Russ Cox3-15/+52
fix, test MergeWithStdout R=r CC=golang-dev http://codereview.appspot.com/214046
2010-02-18gc: fix this morning's bug fixRuss Cox5-5/+7
R=ken2 CC=golang-dev http://codereview.appspot.com/216043
2010-02-18complex constant multiply and divideKen Thompson5-10/+92
R=rsc CC=golang-dev http://codereview.appspot.com/217041
2010-02-18godoc: path cleanups, fixed a race condition, initial support for a menu on ↵Robert Griesemer5-36/+40
pages R=rsc CC=adg, golang-dev http://codereview.appspot.com/215050
2010-02-18sync: allow to work on armv5Dean Prichard3-1/+55
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>
2010-02-18more complex - constantsKen Thompson6-3/+41
import and export R=rsc CC=golang-dev http://codereview.appspot.com/214050
2010-02-18gc: recursive interface embeddingRuss Cox7-40/+76
Fixes issue 287. R=ken2 CC=golang-dev http://codereview.appspot.com/215048
2010-02-175g/8g: fix buildRuss Cox2-0/+2
R=ken2 CC=golang-dev http://codereview.appspot.com/215042
2010-02-17new types complex, complex64 and complex128Ken Thompson9-56/+285
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
2010-02-17release.2010-02-17 part twoAndrew Gerrand0-0/+0
R=rsc CC=golang-dev http://codereview.appspot.com/213042
2010-02-17release 2010-02-17 part oneAndrew Gerrand1-0/+31
R=rsc CC=golang-dev http://codereview.appspot.com/212047
2010-02-17language spec: make NUL byte rule an implementation restrictionRobert Griesemer1-1/+2
R=rsc, r, iant, ken2 CC=golang-dev http://codereview.appspot.com/211041
2010-02-17apply gofmt to src and miscRobert Griesemer1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/213041
2010-02-17gofmt: make sure certain 2-line comments are stableRobert Griesemer3-10/+205
under repeated application of gofmt R=agl, agl1 CC=golang-dev http://codereview.appspot.com/212046
2010-02-178g: respect ullman numbers in float comparisonRuss Cox2-8/+47
Fixes issue 602. R=ken2 CC=golang-dev http://codereview.appspot.com/212045
2010-02-18time.Ticker: fix bug arising when all tickers are dead.Rob Pike2-6/+24
thanks to yglgogo for analysis. Fixes issue 593. R=rsc CC=golang-dev http://codereview.appspot.com/210044
2010-02-17Add Src and Over draw operators.Nigel Tao3-63/+95
R=r, rsc CC=golang-dev http://codereview.appspot.com/207096
2010-02-16install: Added gcc, build-essential to apt-get command line.Andrew Gerrand1-1/+1
Mercury now requires build tools to install. R=rsc CC=golang-dev http://codereview.appspot.com/210042
2010-02-16gc: undo attempt at fixing recursive interface embeddingRuss Cox6-20/+33
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
2010-02-16go/scanner: comply with spec changes (do not allow NUL chars)Robert Griesemer2-16/+24
and complain about illegal UTF-8 code sequences R=rsc CC=golang-dev http://codereview.appspot.com/209043
2010-02-16gc: fix build (signed char bug)Russ Cox1-1/+1
R=ken2 CC=golang-dev http://codereview.appspot.com/210043
2010-02-16gc: disallow NUL byte, catch more invalid UTF-8, testRuss Cox3-31/+89
R=ken2, ken3 CC=golang-dev http://codereview.appspot.com/209041
2010-02-16spec: disallow NUL in source filesRuss Cox1-0/+3
R=r CC=golang-dev http://codereview.appspot.com/209042
2010-02-17specification of []int(string) and []byte(string).Rob Pike1-12/+40
also clarify other string conversions. R=rsc, iant, gri, ken2 CC=golang-dev http://codereview.appspot.com/207103
2010-02-16runtime: fix bug in Caller documentationRuss Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/207110
2010-02-16godoc: updated documentationRobert Griesemer2-8/+24
R=r CC=golang-dev http://codereview.appspot.com/207112
2010-02-17The prefix optimization applies only to the first iteration.Rob Pike2-6/+17
Fixes issue 596. R=rsc CC=golang-dev http://codereview.appspot.com/206101 Committer: Rob Pike <r@golang.org>
2010-02-16godoc: initialize vars depending on flags after parsing the flags.Robert Griesemer2-1/+4
R=rsc CC=golang-dev http://codereview.appspot.com/206109
2010-02-16godoc: fix initialization issueRobert Griesemer2-2/+1
R=rsc CC=golang-dev http://codereview.appspot.com/207111
2010-02-16syscall: make signature of Umask on OS X, FreeBSD match Linux.Giles Lean6-14/+14
R=rsc CC=golang-dev http://codereview.appspot.com/207071 Committer: Russ Cox <rsc@golang.org>
2010-02-16cc: use "cpp" anywhere in path, not "/bin/cpp"Giles Lean1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/206077 Committer: Russ Cox <rsc@golang.org>
2010-02-16A+C: Giles Lean (individual CLA)Russ Cox2-0/+2
R=adg CC=golang-dev http://codereview.appspot.com/206107
2010-02-16godoc support for directories outside $GOROOTRobert Griesemer8-270/+326
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
2010-02-16remove assumption that all files belonging to a package are in the same ↵Robert Griesemer4-26/+46
directory: - adjust ast.Package node and doc.PackageDoc correspondingly - introduce parser.ParseFiles R=rsc CC=golang-dev http://codereview.appspot.com/207087
2010-02-16Don't print ()'s around a range clause's expression.Robert Griesemer3-1/+6
Fixes issue 605. R=rsc CC=golang-dev http://codereview.appspot.com/207108