summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-02-24go/scanner: support for complex (imaginary) constantsRobert Griesemer6-2/+106
R=rsc CC=golang-dev http://codereview.appspot.com/223044
2010-02-24Install runtime.h and cgocall.h.Ian Lance Taylor2-2/+9
This permits cgo generated code to use these header files even if the Go sources are not around. R=rsc CC=golang-dev http://codereview.appspot.com/224045
2010-02-24go/ast: streamline representation of field listsRobert Griesemer11-115/+151
- always include position information about opening/closing parens/braces - replace uses of []*ast.Field with *ast.FieldList Fixes issue 473. R=rsc CC=golang-dev http://codereview.appspot.com/223043
2010-02-24path: add MatchRuss Cox3-0/+274
R=eridius, r, rog CC=golang-dev http://codereview.appspot.com/217088
2010-02-24http: fix handling of Close, use Close in http.PostRuss Cox5-11/+68
default to HTTP/1.1 R=petar-m CC=golang-dev http://codereview.appspot.com/224041
2010-02-24gofmt: don't print ()'s around function-typed results (not needed anymore)Robert Griesemer9-37/+41
- add extra test cases to go/printer tests - apply gofmt to src and misc R=rsc CC=golang-dev http://codereview.appspot.com/223041
2010-02-24go/printer: use general comment intersperse mechanism everywhereRobert Griesemer5-69/+77
- remove several TODOs - as a side-effect, comment stylers are now used always and comments will be properly colored in godoc pkg documentation pages (and not only when looking at source text) R=rsc CC=golang-dev http://codereview.appspot.com/222041
2010-02-24Include an Eratosthenesque concurrent prime sieve to go along with the ↵Anh Hai Trinh2-2/+174
"naive" version. R=r CC=golang-dev http://codereview.appspot.com/218046 Committer: Rob Pike <r@golang.org>
2010-02-24add Anh Hai Trinh to C&ARob Pike2-0/+2
R=rsc, adg CC=golang-dev http://codereview.appspot.com/218076
2010-02-23release.2010-02-23 part twoAndrew Gerrand0-0/+0
R=rsc CC=golang-dev http://codereview.appspot.com/218074
2010-02-23release.2010-02-23 part oneAndrew Gerrand1-0/+26
R=rsc CC=golang-dev http://codereview.appspot.com/217108
2010-02-23misc/bbedit: treat predeclared identifiers as "keywords"Anthony Starks1-1/+26
R=rsc CC=golang-dev http://codereview.appspot.com/218064 Committer: Russ Cox <rsc@golang.org>
2010-02-23crypto package documentation fixMark Zavislak2-6/+6
Replaces stale references to modes.go. R=golang-dev, agl, rsc CC=golang-dev http://codereview.appspot.com/218071 Committer: Russ Cox <rsc@golang.org>
2010-02-23add Mark Zavislak (Google) to CONTRIBUTORSRuss Cox1-0/+1
R=adg CC=golang-dev, zavislak http://codereview.appspot.com/218072
2010-02-23goyacc: fix handling of / and comments in goyaccRob Pike1-2/+20
Fixes issue 618. R=rsc CC=golang-dev http://codereview.appspot.com/217094
2010-02-22runtime: work around Linux kernel bug in futexRuss Cox1-14/+6
Fixes issue 420. R=r CC=golang-dev http://codereview.appspot.com/218065
2010-02-22net: disable UDP server testRuss Cox1-3/+6
has been flaking on various architectures. not sure why, but doesn't seem to be Go's fault. Fixes issue 617. R=r CC=golang-dev http://codereview.appspot.com/217093
2010-02-22math: add lgamma; in-line special cases of acosh, nextafterCharles L. Dorian5-3/+404
Added lgamma.go, tests and special cases. R=rsc CC=golang-dev http://codereview.appspot.com/217060 Committer: Russ Cox <rsc@golang.org>
2010-02-23Fix xgb/example.go typo.Nigel Tao1-1/+1
R=adg CC=golang-dev http://codereview.appspot.com/210047
2010-02-22go_mem: clarified unbuffered channel sync exampleAndrew Gerrand1-2/+3
R=rsc CC=golang-dev http://codereview.appspot.com/218063
2010-02-22go/printer (gofmt): remove more residue from semicolon transitionRobert Griesemer1-79/+14
minor unrelated cleanups R=rsc CC=golang-dev http://codereview.appspot.com/217086
2010-02-22http: use RawURL in Request.WritePetar Maymounkov2-5/+8
R=rsc CC=golang-dev http://codereview.appspot.com/217066 Committer: Russ Cox <rsc@golang.org>
2010-02-22xml: treat bool as value in UnmarshalMichael Hoisie2-9/+19
R=rsc CC=golang-dev http://codereview.appspot.com/218050 Committer: Russ Cox <rsc@golang.org>
2010-02-22effective_go: clarified small commentAndrew Gerrand1-1/+1
R=rsc, cw CC=golang-dev http://codereview.appspot.com/217085
2010-02-22http: fix bug in PostPetar Maymounkov1-1/+3
R=rsc CC=golang-dev http://codereview.appspot.com/217059 Committer: Russ Cox <rsc@golang.org>
2010-02-22json: fix quoted strings in MarshalSergei Skorobogatov2-29/+85
R=rsc CC=golang-dev http://codereview.appspot.com/217047 Committer: Russ Cox <rsc@golang.org>
2010-02-22A+C: add Sergei Skorobogatov (individual CLA)Russ Cox2-0/+2
R=adg CC=golang-dev http://codereview.appspot.com/218060
2010-02-22scanner: match go/scanner and disallow NUL character;Robert Griesemer2-6/+17
also check for illegal UTF-8 sequences R=rsc CC=golang-dev http://codereview.appspot.com/218061
2010-02-21http request URI should never be emptyMichael Hoisie1-1/+1
R=rsc, adg CC=golang-dev http://codereview.appspot.com/217071 Committer: Andrew Gerrand <adg@golang.org>
2010-02-21test: rename nul.go to nul1.goRuss Cox1-0/+0
nul is a reserved file name in Windows R=r CC=golang-dev http://codereview.appspot.com/216068
2010-02-21all done except -Ken Thompson3-103/+297
complex divide float(complex) conversion 8g 5g etc tests R=rsc CC=golang-dev http://codereview.appspot.com/218044
2010-02-21gc: minor const simplificationsRuss Cox1-32/+15
R=ken2 CC=golang-dev http://codereview.appspot.com/217069
2010-02-19fixed bug in mpconst float multiply by 0.Ken Thompson12-28/+262
more complex -- constants, variables and print. R=rsc CC=golang-dev http://codereview.appspot.com/217061
2010-02-19websocket: fix binary frame size decodingTimo Savola1-3/+2
R=ukai, rsc CC=golang-dev http://codereview.appspot.com/166074 Committer: Russ Cox <rsc@golang.org>
2010-02-19A+C: add Timo Savola (individual CLA)Russ Cox2-0/+2
R=adg CC=golang-dev, tsavola http://codereview.appspot.com/217049
2010-02-19go/ast: use a slice instead of a linked list for the list of commentsRobert Griesemer7-42/+38
(this will simplify some further changes) removed several TODOs R=rsc CC=golang-dev http://codereview.appspot.com/216059
2010-02-19godoc: fix path resolution for command-line one more time (sigh...)Robert Griesemer1-2/+21
R=rsc CC=golang-dev http://codereview.appspot.com/217058
2010-02-19- removed exp/parser (support for old semicolon syntax)Robert Griesemer18-2382/+33
- go/ast: removed StringList (not needed anymore) - go/ast: changed import path and field list tag to a single string - updated all dependencies R=rsc CC=golang-dev http://codereview.appspot.com/217056
2010-02-19godoc: make commandline use work againRobert Griesemer2-10/+7
R=rsc CC=golang-dev http://codereview.appspot.com/216054
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>