summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-03-26xgb: fix request length and request size.Firmansyah Adiputra2-15/+18
R=nigeltao_golang, rsc CC=golang-dev http://codereview.appspot.com/759041 Committer: Russ Cox <rsc@golang.org>
2010-03-25spec changes for panic and recover.Rob Pike1-8/+178
R=rsc, gri CC=golang-dev http://codereview.appspot.com/763041
2010-03-25godoc: don't convert multi-line functions into one-liners by defaultRobert Griesemer9-64/+150
- new heuristic: if both the opening { and closing } braces are on the same line, and the function body doesn't contain comments or is other- wise too long (e.g. signature too long), it is formatted as a one-line function - related cleanups along the way - gofmt -w src misc led to no additional changes as expected R=rsc, rsc1 CC=golang-dev, ken2, r http://codereview.appspot.com/758041
2010-03-25bug264 didn't report BUG correctly, caused "fail" from test/runRob Pike2-5/+6
R=rsc, gri CC=golang-dev http://codereview.appspot.com/762041
2010-03-25make alignment rules match 8g, just like 6c matches 6g.Russ Cox1-2/+4
R=ken2 CC=golang-dev http://codereview.appspot.com/760042
2010-03-25gc: more syntax errorsRuss Cox3-10/+36
R=r CC=golang-dev http://codereview.appspot.com/731041
2010-03-25Add strconv.Atob, Btoa.Rob Pike5-17/+94
Fixes issue 639 R=rsc CC=golang-dev http://codereview.appspot.com/755041
2010-03-25Support #pragma dynexport on OS X.Ian Lance Taylor1-20/+108
R=rsc CC=golang-dev http://codereview.appspot.com/733041
2010-03-25bug264: test case for issue 692Robert Griesemer2-0/+58
R=r CC=golang-dev http://codereview.appspot.com/715042
2010-03-25arm: disable some problematic testsDean Prichard2-7/+0
test/64bit.go: segfaults on sheevaplug(armv5) The following have long runtimes when GC is on. Sample run time in seconds for android emulator and sheevaplug test/stack.go: 4934s 1780s test/ken/chan.go: 860s 296s test/gc1.go: 218s 69s R=rsc, kaib CC=golang-dev http://codereview.appspot.com/749041 Committer: Russ Cox <rsc@golang.org>
2010-03-24syscall: Implement SetsockoptStringChristopher Wedgwood3-0/+10
R=rsc, r CC=golang-dev http://codereview.appspot.com/739042 Committer: Russ Cox <rsc@golang.org>
2010-03-25Sydney University tech talk.Nigel Tao2-0/+395
R=adg CC=golang-dev http://codereview.appspot.com/744042
2010-03-24gc: tests omitted from the last bug fixRuss Cox2-0/+68
R=ken2 CC=golang-dev http://codereview.appspot.com/748041
2010-03-24syscall: bring generated files zsyscall_darwin_*.goGiles Lean2-12/+12
up to date. No functional change, but when these files are regenerated they change, leading to noisy diffs when working in the syscall package. R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/705043 Committer: Russ Cox <rsc@golang.org>
2010-03-24test/mallocfin: relax test to 80% from 90%.Russ Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/725042
2010-03-24runtime: fix mingw build, implement missing destroylock()Alex Brainman1-0/+5
R=golang-dev, rsc CC=golang-dev http://codereview.appspot.com/747041 Committer: Russ Cox <rsc@golang.org>
2010-03-24depricate paniclnKen Thompson6-13/+4
R=rsc CC=golang-dev http://codereview.appspot.com/743041
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike79-2105/+3093
in the tests, println+panic. gofmt some tests too. R=rsc CC=golang-dev http://codereview.appspot.com/741041
2010-03-24godoc: show relative file names without leading '/' (per r's request)Robert Griesemer5-23/+24
- change the various url-xxx formatters to return a relative URL path - make the leading '/' for URLs explicit in the template - on the way change some |html formatters to |html-esc (html should only be used for formatting AST nodes) R=rsc, r CC=golang-dev http://codereview.appspot.com/740041
2010-03-24Delete panicln from the spec.Rob Pike1-2/+1
R=rsc, gri, iant, ken2 CC=golang-dev http://codereview.appspot.com/738041
2010-03-24godoc: use http GET for remote search instead of rpcRobert Griesemer2-53/+31
(this will allow the use of golang.org for remote searches) R=rsc CC=golang-dev http://codereview.appspot.com/734041
2010-03-24runtime: malloc sampling, pprof interfaceRuss Cox14-41/+396
R=r CC=golang-dev http://codereview.appspot.com/719041
2010-03-24math: add J0 and Y0 (Bessel functions)Charles L. Dorian3-0/+528
R=rsc CC=golang-dev http://codereview.appspot.com/661044 Committer: Russ Cox <rsc@golang.org>
2010-03-24cc: fix typoRuss Cox1-1/+1
R=iant CC=golang-dev http://codereview.appspot.com/720041
2010-03-23runtime: add memory profiling, disabled.Russ Cox11-31/+344
no way to get the data out yet. add prototype for runtime.Callers, missing from last CL. R=r CC=golang-dev http://codereview.appspot.com/713041
2010-03-23arm: fix buildDean Prichard2-5/+4
R=kaib, rsc CC=golang-dev http://codereview.appspot.com/627045 Committer: Russ Cox <rsc@golang.org>
2010-03-23cmd/goinstall: include command name in error reporting (usually missing ↵Andrey Mirtchovski1-1/+2
software or incorrect $PATH) R=rsc CC=golang-dev http://codereview.appspot.com/695041 Committer: Russ Cox <rsc@golang.org>
2010-03-23gc: fix build in FranceRuss Cox1-1/+1
Fixes issue 626. R=ken2 CC=golang-dev http://codereview.appspot.com/714041
2010-03-23websocket: implement new protocolFumitoshi Ukai3-15/+431
http://www.whatwg.org/specs/web-socket-protocol/ (draft of draft-hixie-thewebsocketprotocol-76) draft-hixie-thewebsocketprotocol-76 will introduce new handshake incompatible draft 75 or prior. http://tools.ietf.org/html/draft-hixie-thewebsocketprotocol R=rsc CC=golang-dev http://codereview.appspot.com/583041 Committer: Russ Cox <rsc@golang.org>
2010-03-23Trivial: remove duplicate line #include <sys/types.h>Giles Lean1-1/+0
R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/645044 Committer: Robert Griesemer <gri@golang.org>
2010-03-23fix build - unused importRuss Cox1-1/+0
R=gri CC=golang-dev http://codereview.appspot.com/711041
2010-03-23go spec: modification of defer statementRobert Griesemer1-5/+17
R=r, rsc, ken2, iant CC=golang-dev http://codereview.appspot.com/708041
2010-03-23FAQ: Protocol buffers are now supported. Update the entry.Rob Pike1-4/+4
R=rsc, adg CC=golang-dev http://codereview.appspot.com/702042
2010-03-23runtime: add CallersRuss Cox7-393/+121
cut copies of traceback from 6 to 1. R=r CC=golang-dev http://codereview.appspot.com/703041
2010-03-23go/printer: avoid reflect in printRuss Cox1-7/+5
R=gri CC=golang-dev http://codereview.appspot.com/704041
2010-03-23Go spec: map indexing never raises a runtime exception.Robert Griesemer1-25/+28
Also: Actual map key must be assignment-compatible with formal map key type. Fixes issue 357. R=r, iant, rsc, ken2 CC=golang-dev http://codereview.appspot.com/673042
2010-03-23xml: add line numbers to syntax errors.Kyle Consalus2-25/+49
R=rsc CC=golang-dev http://codereview.appspot.com/699041 Committer: Russ Cox <rsc@golang.org>
2010-03-23maps access to a missing keyKen Thompson1-2/+4
will return the "zero" value R=rsc CC=golang-dev http://codereview.appspot.com/700041
2010-03-23xml: add CopyTokenKyle Consalus2-2/+52
R=rsc CC=golang-dev http://codereview.appspot.com/634042 Committer: Russ Cox <rsc@golang.org>
2010-03-23Add support for #pragma dynexport.Ian Lance Taylor16-105/+362
R=rsc CC=golang-dev http://codereview.appspot.com/661043
2010-03-23release.2010-03-22 part twoAndrew Gerrand0-0/+0
R=rsc CC=golang-dev http://codereview.appspot.com/691041
2010-03-22Rename dynld to dynimport throughout.Ian Lance Taylor16-66/+77
Cgo users will need to rerun cgo. R=rsc CC=golang-dev http://codereview.appspot.com/692041
2010-03-23release.2010-03-22Andrew Gerrand1-0/+35
R=rsc CC=golang-dev http://codereview.appspot.com/643042
2010-03-22gc: various map-related bug fixesRuss Cox4-58/+51
Fixes issue 687. R=ken2 CC=golang-dev http://codereview.appspot.com/680042
2010-03-23ast/printer: support for printing ast.Spec nodesAndrew Gerrand1-0/+3
R=gri CC=golang-dev http://codereview.appspot.com/682041
2010-03-20goinstall: let git/hg/svn create the final directory elementRuss Cox1-1/+3
R=r CC=golang-dev http://codereview.appspot.com/634044
2010-03-20A+C: add Kyle Consalus (individual CLA)Russ Cox2-0/+2
R=r CC=golang-dev http://codereview.appspot.com/662041
2010-03-20libmach: more info when memory reads fail on DarwinRuss Cox1-2/+4
R=r CC=golang-dev http://codereview.appspot.com/604043
2010-03-20issue 682Ken Thompson6-22/+71
complex DATA statement fo initialization of complex variables. R=rsc CC=golang-dev http://codereview.appspot.com/634045
2010-03-19godoc: line numbers for all remote search resultsRobert Griesemer3-10/+15
Instead of returning the index lookup result via RPC which has to be corrected for the client, simply render it on the server and return the final output. R=rsc, r CC=golang-dev http://codereview.appspot.com/669041