summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-02-05Match gccgo error message.Ian Lance Taylor1-1/+1
bug251.go:11:2: error: invalid recursive interface R=rsc CC=golang-dev http://codereview.appspot.com/204052
2010-02-05Match gccgo error messages.Ian Lance Taylor1-2/+2
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
2010-02-05http: sort header keys when writing Response or Request to wirePetar Maymounkov2-11/+24
R=rsc CC=golang-dev http://codereview.appspot.com/203050 Committer: Russ Cox <rsc@golang.org>
2010-02-05bug in const float divideKen Thompson1-2/+15
R=rsc CC=golang-dev http://codereview.appspot.com/204042
2010-02-05math: Atan2 special cases and tests; atan2_386Charles L. Dorian5-3/+166
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>
2010-02-06Ugly hack to provide some mechanism for printing documentation aboutRob Pike2-2/+38
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>
2010-02-05dashboard: present benchmarksRuss Cox6-47/+422
* 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
2010-02-05asn1: Fixes and additions to marshallingAdam Langley6-47/+161
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
2010-02-05crypto/tls: typo fixAdam Langley1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/201047
2010-02-05path: make Join variadicStephen Weinberg2-16/+34
R=rsc, r CC=golang-dev http://codereview.appspot.com/198049 Committer: Russ Cox <rsc@golang.org>
2010-02-055a/6a/8a/5c/6c/8c: remove fixed-size arrays for -I and -D optionsDean Prichard9-32/+41
R=rsc CC=golang-dev http://codereview.appspot.com/198044 Committer: Russ Cox <rsc@golang.org>
2010-02-05math: special cases for Modf, Frexp and Ldexp; added Modf_386Charles L. Dorian6-26/+188
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>
2010-02-04Match gccgo error messages.Ian Lance Taylor8-13/+13
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
2010-02-04release.2010-02-04Andrew Gerrand0-0/+0
R=rsc CC=golang-dev http://codereview.appspot.com/202055
2010-02-04release.2010-02-04 step oneAndrew Gerrand1-0/+34
R=rsc CC=golang-dev http://codereview.appspot.com/202054
2010-02-05handle nils safely in Printf.Rob Pike2-2/+12
add some tests for erroneous formats. R=rsc CC=golang-dev http://codereview.appspot.com/201058
2010-02-04Added mingw specific build stubs.Joe Poirier3-0/+27
R=rsc CC=golang-dev http://codereview.appspot.com/198071 Committer: Russ Cox <rsc@golang.org>
2010-02-04time: Sleep through interruptionsChristopher Wedgwood2-2/+39
R=rsc CC=golang-dev http://codereview.appspot.com/202043 Committer: Russ Cox <rsc@golang.org>
2010-02-04FreeBSD: Kill only takes pid & signalChristopher Wedgwood3-8/+5
Cosmetic fix. The FreeBSD system call only takes two arguments. http://fxr.watson.org/fxr/source/kern/kern_sig.c?im=bigexcerpts#L1678 R=dho, rsc CC=golang-dev http://codereview.appspot.com/202051 Committer: Russ Cox <rsc@golang.org>
2010-02-04A+C: Joe Poirier (individual CLA)Russ Cox2-0/+2
R=adg, adg1 CC=golang-dev http://codereview.appspot.com/202044 Committer: Russ Cox <rsc@golang.org>
2010-02-046l: move mapped symbol table lower in memoryAndrew Gerrand4-8/+6
Allows binary to run on some Linux system. Fix for issue 365. R=rsc CC=golang-dev http://codereview.appspot.com/199096
2010-02-04Added Andrew Gerrand to CONTRIBUTORSAndrew Gerrand1-0/+1
R=golang-dev CC=golang-dev http://codereview.appspot.com/201041
2010-02-04In draw.Draw, separate the source-point and mask-point.Nigel Tao2-56/+66
This lets you draw text (i.e. with mask = a font image) with sources that aren't uniform colors. R=r, rsc CC=golang-dev http://codereview.appspot.com/193067
2010-02-04syscall: on freebsd, darwin, give Kill same signature as on linuxRuss Cox6-6/+12
R=r, cw CC=golang-dev http://codereview.appspot.com/201043
2010-02-04Add named colors (e.g. image.Blue), suitable for exp/draw.Nigel Tao2-0/+51
R=r, rsc CC=golang-dev http://codereview.appspot.com/198066
2010-02-04http: use ChunkWriter in Request.WritePetar Maymounkov1-27/+15
R=rsc CC=golang-dev http://codereview.appspot.com/196079 Committer: Russ Cox <rsc@golang.org>
2010-02-03os/signal: send SIGCHLDs to IncomingChristopher Wedgwood3-3/+3
R=rsc CC=golang-dev http://codereview.appspot.com/199082 Committer: Russ Cox <rsc@golang.org>
2010-02-03search for runtime.a in the package path instead of hardcodingKai Backman4-22/+33
the location. remove last remnants of broken -l flag. R=rsc CC=golang-dev http://codereview.appspot.com/201042
2010-02-03arm: toss make-arm.bashRuss Cox3-99/+7
R=kaib CC=golang-dev http://codereview.appspot.com/199094
2010-02-04Add RFC822 formats as named constants.Rob Pike3-5/+38
Make sure to print a time zone when formatting even if none is defined. Add a comment introducing lookupTimezone (not lookupTimeZone). Fixes isse 577. R=rsc CC=golang-dev http://codereview.appspot.com/196090
2010-02-03add apple's .DS_Store to ignored listRob Pike1-0/+1
R=rsc CC=golang-dev http://codereview.appspot.com/198102
2010-02-03debug/gosym: fix test for new 6lRuss Cox1-1/+1
TBR=r CC=golang-dev http://codereview.appspot.com/199091
2010-02-03finalizers; merge package malloc into package runtimeRuss Cox20-243/+554
R=r, cw CC=golang-dev http://codereview.appspot.com/198085
2010-02-03ld: include main and runtime in the library loopRuss Cox5-17/+36
Fixes issue 585. R=r CC=golang-dev http://codereview.appspot.com/195075
2010-02-02sort: fix comment typoAndrey Mirtchovski1-1/+1
R=rsc CC=golang-dev http://codereview.appspot.com/198084 Committer: Russ Cox <rsc@golang.org>
2010-02-02fix build - misc ... vs ...T fixesRuss Cox4-19/+8
TBR=r CC=golang-dev http://codereview.appspot.com/198081
2010-02-02added note about the GOARM env variableKai Backman1-0/+11
R=rsc, r CC=golang-dev http://codereview.appspot.com/198074
2010-02-02bug252: make ... vs ...T crossing an error, at least for nowRuss Cox2-0/+20
R=r CC=golang-dev http://codereview.appspot.com/199066
2010-02-01gc: bug250, bug251 - recursive interface typesRuss Cox5-37/+112
Fixes issue 287. R=ken2 CC=golang-dev http://codereview.appspot.com/199057
2010-02-02New image.A type, to represent anti-aliased font glyphs.Nigel Tao2-0/+53
R=r, rsc CC=golang-dev http://codereview.appspot.com/199052
2010-02-01Match gccgo error messages.Ian Lance Taylor1-2/+2
bug249.go:10:5: error: incompatible type in initialization bug249.go:26:5: error: incompatible type in initialization R=rsc CC=golang-dev http://codereview.appspot.com/198058
2010-02-01gc: bug246Russ Cox6-11/+25
R=ken2 CC=golang-dev http://codereview.appspot.com/198057
2010-02-01math: change Cosh test to close, not veryclose (needed on some x86 chips)Russ Cox1-1/+1
R=r CC=Charlie Dorian, golang-dev http://codereview.appspot.com/199054
2010-02-01math: add functions; update tests and special casesCharles L. Dorian18-148/+1727
Added special cases to comments for asin.go and fabs.go. Added Trunc() to floor.go and floor_386.s. Fixed formatting error in hypot_386.s Added new functions Acosh, Asinh, Atanh, Copysign, Erf, Erfc, Expm1, and Log1p. Added 386 FPU version of Fmod. Added tests, benchmarks, and precision to expected results in all_test.go. Edited makefile so it all compiles. R=rsc CC=golang-dev http://codereview.appspot.com/195052 Committer: Russ Cox <rsc@golang.org>
2010-02-01gc: bug242Russ Cox6-52/+60
R=ken2 CC=golang-dev http://codereview.appspot.com/198053
2010-02-01...T is now implementedRob Pike1-1/+0
R=rsc, gri CC=golang-dev http://codereview.appspot.com/198050
2010-02-01update printer tests to use new syntaxRobert Griesemer9-590/+466
R=rsc CC=golang-dev http://codereview.appspot.com/198048
2010-02-01io: revised Pipe implementationRuss Cox1-61/+41
* renamed channels to say what gets sent * use channel closed status instead of racy check of boolean R=nigeltao_golang CC=golang-dev http://codereview.appspot.com/196065
2010-02-02allow any scalar type in xml.Unmarshal.Rob Pike2-2/+179
Fixes issue 574. R=rsc CC=golang-dev http://codereview.appspot.com/196056
2010-02-01Match gccgo error messages.Ian Lance Taylor1-2/+2
import1.go:12:8: error: redefinition of ‘bufio’ import1.go:11:8: note: previous definition of ‘bufio’ was here import1.go:16:2: error: redefinition of ‘fmt’ import1.go:15:2: note: previous definition of ‘fmt’ was here import1.go:11:8: error: imported and not used: bufio R=rsc CC=golang-dev http://codereview.appspot.com/194165