summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-01-09codereview: do not send mail when submitting for othersRuss Cox1-20/+20
rename original_author to copied_from so that it reads better when used as a condition. R=r CC=golang-dev http://codereview.appspot.com/185045
2010-01-08math: special cases for Atan, Asin and AcosCharles L. Dorian4-86/+198
Added tests for NaN and out-of-range values. Combined asin.go and atan.go into atan.go. R=rsc CC=golang-dev http://codereview.appspot.com/180065 Committer: Russ Cox <rsc@golang.org>
2010-01-09fix typoRob Pike1-1/+1
R=gri, iant CC=golang-dev http://codereview.appspot.com/183160
2010-01-08gc: bug238Russ Cox5-35/+27
Fixes issue 471. R=ken2 CC=golang-dev http://codereview.appspot.com/181184
2010-01-07gc: bug219, bug239, bug240Russ Cox4-7/+26
Fixes issue 475. R=ken2 CC=golang-dev http://codereview.appspot.com/183157
2010-01-07gc: bug241Russ Cox2-1/+14
Fixes issue 495. R=ken2 CC=golang-dev http://codereview.appspot.com/183156
2010-01-08Rewrite tokenizer to clean up and fix a bug with spaces before delimited block.Rob Pike2-45/+73
Fixes issue 501. R=rsc CC=golang-dev http://codereview.appspot.com/181183
2010-01-07Add builder scripts.Adam Langley9-0/+697
These are the scripts behind godashboard.appspot.com. Nothing is particularly beautiful about it, but it does run. I still need to add support for per-builder keys and for running the benchmarks. R=rsc CC=golang-dev http://codereview.appspot.com/183153
2010-01-07add doc/devel/index.html, linked from nav barRuss Cox2-6/+10
R=r CC=golang-dev http://codereview.appspot.com/181156
2010-01-07codereview: repeated hg mail sends "PTAL"Russ Cox1-9/+29
also send out hg mail for TBR submits R=r CC=golang-dev http://codereview.appspot.com/183137
2010-01-07http: most of a URL shouldn't use URL-escapingRuss Cox3-18/+41
Fixes issue 502. R=r, hoisie CC=golang-dev http://codereview.appspot.com/181179
2010-01-08Add a parser to the time package, the inverse of time.FormatRob Pike2-1/+345
R=rsc CC=golang-dev http://codereview.appspot.com/183141
2010-01-07added some missing periodsRobert Griesemer1-4/+4
R=rsc CC=golang-dev http://codereview.appspot.com/181171
2010-01-07make Format about twice as fast by removing allocations, using a bytes.BufferRob Pike2-31/+28
add a benchmark R=rsc CC=golang-dev http://codereview.appspot.com/181164
2010-01-06update timing logs for benchmarks.Rob Pike1-0/+84
some significant improvements: reverse-complement nbody (gccgo only) regex-dna pidigits one mysterious drop: binary-tree.go (gccgo only) R=rsc CC=golang-dev http://codereview.appspot.com/181158
2010-01-068g: float->uint64 conversion optimizationEvan Shaw1-9/+3
Using FUCOMIP instead of the FUCOMP-FSTSW-SAHF sequence gives better performance and saves code space. R=rsc CC=golang-dev http://codereview.appspot.com/183139 Committer: Russ Cox <rsc@golang.org>
2010-01-06libmach: Add disassembly for newly implemented opcodesEvan Shaw1-0/+4
R=rsc CC=golang-dev http://codereview.appspot.com/183140 Committer: Russ Cox <rsc@golang.org>
2010-01-06runtime: close TODO now that 8c bug is fixedRuss Cox2-23/+5
R=r CC=golang-dev http://codereview.appspot.com/183138
2010-01-07add a standard interface that wraps ReadByte, io.ReadByterRob Pike1-0/+8
R=rsc CC=golang-dev http://codereview.appspot.com/181163
2010-01-06sync make-arm.bash with make.bashRuss Cox1-3/+6
R=r CC=golang-dev http://codereview.appspot.com/183135
2010-01-068c: only refer to extern register variables in MOVL instructionsRuss Cox2-1/+8
R=ken2 http://codereview.appspot.com/183136
2010-01-06deps.bash: handle space between .go and \ in GOFILES=Russ Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/181157
2010-01-06Ported runtime to Windows.Hector Chu20-60/+600
R=rsc CC=golang-dev http://codereview.appspot.com/176066 Committer: Russ Cox <rsc@golang.org>
2010-01-06time: fix Makefile so deps.bash is happy (fixes build)Russ Cox1-1/+1
TBR=r http://codereview.appspot.com/183133
2010-01-06godoc: serve index.html in place of directory listing, when presentRuss Cox1-0/+10
R=gri CC=golang-dev http://codereview.appspot.com/181155
2010-01-06add release log as doc/devel/release.htmlRuss Cox1-0/+149
won't appear online until next release R=r CC=golang-dev http://codereview.appspot.com/183126
2010-01-06Use remove-text-properties instead ofAustin Clements1-2/+2
remove-list-of-test-properties, since the latter is missing from XEmacs. Fixes issue 462. R=rsc CC=golang-dev http://codereview.appspot.com/181152 Committer: Russ Cox <rsc@golang.org>
2010-01-06http: avoid header duplication - take struct fields out of Header mapRuss Cox1-2/+12
R=r CC=golang-dev, petar-m http://codereview.appspot.com/183132
2010-01-06cgo: Use -fno-eliminate-unused-debug-types when calling gcc to for dwarf stabs.Devon H. O'Dell1-0/+1
This keeps debug symbols in for e.g. unreferenced enums. Fixes issue 479 R=rsc CC=golang-dev, waltermundt http://codereview.appspot.com/181102 Committer: Russ Cox <rsc@golang.org>
2010-01-07New time formatter, time.Format(formatString)Rob Pike4-155/+259
The model is that formatString is a a representation of a standard time, and that Format converts the time to that representation. Standard representaitons are defined for ANSIC, RFC850, RFC1123, and ISO8601. There's also a humane Kitchen fomat: 3:04PM. R=rsc, benolive, cw CC=golang-dev http://codereview.appspot.com/181130
2010-01-06Added me to authors and contributors.Jan H. Hosang2-0/+2
R=golang-dev, iant CC=golang-dev http://codereview.appspot.com/181153 Committer: Ian Lance Taylor <iant@golang.org>
2010-01-06Fix missing explicit GOBIN in src/pkg/Makefile. Clean up creation ofDevon H. O'Dell3-18/+16
QUOTED_GOBIN. Re-take of 181077; fixes copy-pasta that broke build. Fixes issue 468 R=rsc CC=golang-dev http://codereview.appspot.com/183125 Committer: Russ Cox <rsc@golang.org>
2010-01-06Add http.CanonicalPath and tests for it. Remove BUG(rsc) from url.go.Ivan Krasin2-9/+95
R=rsc, imkrasin CC=golang-dev http://codereview.appspot.com/179126 Committer: Russ Cox <rsc@golang.org>
2010-01-06Propagate error to the caller in json.Marshal. Fixes issue 445.Ivan Krasin2-6/+21
R=rsc, imkrasin CC=golang-dev http://codereview.appspot.com/179125 Committer: Russ Cox <rsc@golang.org>
2010-01-05release.2010-01-05Russ Cox0-0/+0
R=r http://codereview.appspot.com/183124
2010-01-05hgtags: delete "release" (prepare for new release)Russ Cox0-0/+0
R=r CC=golang-dev http://codereview.appspot.com/183123
2010-01-058a, 8l: Add FCOMI, FCOMIP, FUCOMI, FUCOMIP instructionsEvan Shaw3-1/+13
Fixes issue 447 R=rsc CC=golang-dev http://codereview.appspot.com/183047 Committer: Russ Cox <rsc@golang.org>
2010-01-05rollback of http://codereview.appspot.com/181077Russ Cox3-16/+18
(broke build) TBR=dho http://codereview.appspot.com/181139
2010-01-05xml: Fix comment so that example code compilesEvan Shaw1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/181138 Committer: Russ Cox <rsc@golang.org>
2010-01-05Update Emacs go-mode for new semicolon rule.Austin Clements1-41/+57
Fixes issue 415. R=rsc CC=golang-dev http://codereview.appspot.com/183104 Committer: Russ Cox <rsc@golang.org>
2010-01-05big: fix ProbablyPrime bug, commentsRuss Cox3-4/+14
(changes adopted from alc, agl) R=agl1, agl CC=golang-dev http://codereview.appspot.com/181137
2010-01-05Fix missing explicit GOBIN in src/pkg/Makefile. Clean up creation of ↵Devon H. O'Dell3-18/+16
QUOTED_GOBIN Fixes issue 468 R=rsc CC=golang-dev http://codereview.appspot.com/181077 Committer: Russ Cox <rsc@golang.org>
2010-01-05syscall: add nanosleep on FreeBSDDevon H. O'Dell3-0/+13
Fixes issue 461 R=rsc CC=golang-dev http://codereview.appspot.com/181059 Committer: Russ Cox <rsc@golang.org>
2010-01-05net: make Dial correctly return nil on error.Roger Peppe1-3/+15
R=rsc CC=golang-dev http://codereview.appspot.com/181135 Committer: Russ Cox <rsc@golang.org>
2010-01-04remove reference to "basic literal" since it's never definedRobert Griesemer1-1/+2
R=rsc, r CC=golang-dev http://codereview.appspot.com/183113
2010-01-04Simplified parser interface.Robert Griesemer4-54/+39
R=rsc, r CC=golang-dev, rog http://codereview.appspot.com/183116
2010-01-05Check for errors when writing fields of a struct.Rob Pike1-1/+5
R=rsc CC=golang-dev, jack.palevich http://codereview.appspot.com/183109
2010-01-04Allow a nil Ident to print without crashing.Roger Peppe2-6/+14
Allow Walk of []Decl R=gri CC=golang-dev, rsc http://codereview.appspot.com/183112 Committer: Robert Griesemer <gri@golang.org>
2010-01-04fix up YB and add ZB, EB in exampleRob Pike1-0/+6
R=rsc CC=golang-dev http://codereview.appspot.com/183107
2010-01-02Remove redundant size check in resize. Let callers worry about that and ↵Yongjian Xu1-5/+2
resize should just do "resize". R=golang-dev, r CC=golang-dev http://codereview.appspot.com/181111 Committer: Rob Pike <r@golang.org>