- 27 Jun, 2011 21 commits
-
-
Russ Cox authored
R=r, sam.thorogood, kevlar CC=golang-dev, rsc https://golang.org/cl/4636046
-
Rob Pike authored
Change the signature of Split to have no count, assuming a full split, and rename the existing Split with a count to SplitN. Do the same to package bytes. Add a gofix module. R=adg, dsymonds, alex.brainman, rsc CC=golang-dev https://golang.org/cl/4661051
-
Ken Rockot authored
These are the relevant changes to exec_unix.go now that mkerrors.sh outputs have been updated. R=rsc CC=golang-dev https://golang.org/cl/4648064
-
Kyle Lemons authored
I have written up a Marshal and MarshalIndent pair that should closely reflect the way that Unmarshal works. I would love feedback on making this code more accessible and efficient... I haven't used reflecton on this scale before, so there is probably a lot of work that can be done on that. Some potentially controversial things: - All tag names are lower-cased by default. - Zero-valued struct values are skipped. - No namespace prefix (o:tag, etc) mechanism is supplied. - You are allowed to marshal non-struct values (even though unmarshal cannot handle them). - A tag for a non-XMLName struct field that isn't "attr", "chardata", or "innerxml" is used as the name of the tag. This could wreak havoc if you try to marshal a protobuf struct. - The "innerxml" and "chardata" are inserted verbatim. If you try to marshal something straight from unmarshal, the results could be unexpected (remove "innerxml" support from Marshal would be one possible solution). R=rsc CC=golang-dev https://golang.org/cl/4539082
-
Russ Cox authored
R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/4634101
-
Brad Fitzpatrick authored
Fixes #2011 R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4667043
-
Russ Cox authored
R=dvyukov, r CC=golang-dev https://golang.org/cl/4657053
-
Russ Cox authored
Fixes #2006. R=ken2 CC=golang-dev https://golang.org/cl/4643056
-
Brad Fitzpatrick authored
Permits serving from virtual filesystems, such as files linked into a binary, or from a zip file. Also adds a gofix for: http.FileServer(root, prefix) -> http.StripPrefix(prefix, http.FileServer(http.Dir(root))) R=r, rsc, gri, adg, dsymonds, r, gri CC=golang-dev https://golang.org/cl/4629047
-
Graham Miller authored
Reader previously had cached an error from the underlying reader and would return it on every subsequent call to Read. The Reader will now return the error only once, and subsequent calls will result in a new Read call to the underlying Reader. Fixes #1934. R=bradfitz, rogpeppe, rsc CC=golang-dev https://golang.org/cl/4528133
-
Dmitriy Vyukov authored
R=r, rsc CC=golang-dev https://golang.org/cl/4650054
-
Lucio De Re authored
8a/a.h: . Removed <u.h> and <libc.h> includes as they work better in "a.y". . Made definition of EOF conditional as it's defined in the Plan 9 header files, but not elsewhere. 8a/a.y: . Added <u.h> and <libc.h> because <stdio.h> in Plan 9 needs them. Sequence <u.h>, <stdio.h>, <libc.h> recommended by RSC. 8a/lex.c: . Added <u.h> and <libc.h> as now needed by "a.h". . Dropped <ctype.h>. cc/lexbody: . exit() -> exits(). . Dropped unwanted incrementation. cc/macbody: . Adjusted a few format specifications. R=rsc CC=golang-dev https://golang.org/cl/4644047
-
Anthony Martin authored
R=rsc, n13m3y3r, gustavo CC=golang-dev https://golang.org/cl/4661050
-
Russ Cox authored
R=golang-dev, bradfitz, go.peter.90 CC=golang-dev https://golang.org/cl/4627068
-
Brad Fitzpatrick authored
R=rsc CC=golang-dev https://golang.org/cl/4626067
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4627067
-
Brad Fitzpatrick authored
Previously we were snapshotting the TLS state into *Request before we did the HTTP ReadRequest, the first Read of which triggered the TLS handshake implicitly. Fixes #1956 R=golang-dev, rsc CC=agl, golang-dev https://golang.org/cl/4630072
-
Dmitriy Vyukov authored
-test.benchtime allows to specify benchmark execution time. -test.cpu allows to execute tests/benchmarks for several values of GOMAXPROCS. R=r, r, rsc CC=golang-dev https://golang.org/cl/4662046
-
Russ Cox authored
build runs with chmod 0 /bin/ed now R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4635071
-
Russ Cox authored
did darwin on mac with older, not broken xcode. did linux arm by copying diffs from linux 386. did freebsd amd64 by copying diffs from freebsd 386. R=golang-dev, r, mikioh.mikioh CC=golang-dev https://golang.org/cl/4629067
-
Dmitry Chestnykh authored
Documentation mentioned the obsolete package "crypto/block", which has been replaced with "crypto/cipher". R=golang-dev, agl CC=golang-dev https://golang.org/cl/4654064
-
- 26 Jun, 2011 1 commit
-
-
Robert Hencke authored
Fixes #1970. R=rsc, r CC=golang-dev https://golang.org/cl/4650050
-
- 25 Jun, 2011 3 commits
-
-
Robert Hencke authored
Fixes #1969. R=gri, rsc, r CC=golang-dev https://golang.org/cl/4634076
-
Robert Griesemer authored
- don't rely on /dev/stdin as the name for standard input - employ EBNF extraction if the source contains tags "cat source.html | ebnflint" works now R=r CC=golang-dev https://golang.org/cl/4641075
-
Michael T. Jones authored
Users of the Scan() infrastructure that employ ReadRune() rather than Token() need a way to skip leading spaces and newlines as set by the the parent, Fscan(), Fscanln, or Fscanf(). As the internal methods and boolean flags are not exported, this new function was added here and in the Int and Nat Scan() functions of the big package. (fmt.Rat did not need change since it uses Token()) Also added Printf style format code support to int types and tests for same to int_test.go R=r, r, gri, mtj CC=golang-dev https://golang.org/cl/4634074
-
- 24 Jun, 2011 12 commits
-
-
Brad Fitzpatrick authored
As rsc suggested after change 58a6bdac3d12 was committed, we now read the first byte of Request.Body when the Request.ContentLength is 0 to disambiguate between a truly zero-length body and a body of unknown length where the user didn't set the ContentLength field. This was also causing the reverse proxy problem where incoming requests (which always have a body, of private type http.body, even for 0-lengthed requests) were being relayed to the http Transport for fetching, which was serializing the request as a chunked request (since ContentLength was 0 and Body was non-nil) Fixes #1999 R=golang-dev, kevlar CC=golang-dev https://golang.org/cl/4628063
-
Brad Fitzpatrick authored
Incremental step in fix for issue 1999 R=golang-dev, kevlar CC=golang-dev https://golang.org/cl/4667041
-
Pascal S. de Kloe authored
RFC 1521 section 4 states "The type, subtype, and parameter names are not case sensitive.". R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/4648047
-
Robert Hencke authored
file.go contains a more complete package description. R=golang-dev, gri CC=golang-dev https://golang.org/cl/4645058
-
Quan Yong Zhai authored
R=golang-dev, gri CC=golang-dev https://golang.org/cl/4630065
-
Alex Brainman authored
R=golang-dev CC=golang-dev https://golang.org/cl/4630066
-
Andrew Gerrand authored
R=r CC=golang-dev https://golang.org/cl/4635067
-
Andrew Gerrand authored
R=golang-dev, robert.hencke, r CC=golang-dev https://golang.org/cl/4625062
-
Yasuhiro Matsumoto authored
Fixed issue 1992 R=golang-dev, alex.brainman CC=golang-dev https://golang.org/cl/4661047
-
Brad Fitzpatrick authored
Fixes #1996 R=golang-dev, r CC=golang-dev https://golang.org/cl/4639068
-
Gustavo Niemeyer authored
grsec needs the FIXED flag to be provided to mmap, which works now. That said, when the allocation fails to be made in the specific address, we're still given back a writable page. This change will unmap that page to avoid using twice the amount of memory needed. It'd also be pretty easy to avoid the extra system calls once we detected that the flag is needed, but I'm not sure if that edge case is worth the effort. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/4634086
-
Andrew Gerrand authored
This is a temporary measure until go/build can build cgo packages. R=golang-dev, r CC=golang-dev https://golang.org/cl/4627056
-
- 23 Jun, 2011 3 commits
-
-
Yasuhiro Matsumoto authored
R=golang-dev, bradfitz, arctanofyourface CC=golang-dev https://golang.org/cl/4635063
-
Anthony Martin authored
The optable for 0xDB is handled specially. This was the cause of a really weird bug when using cov (386!) on the math package. A real head-scratcher. R=rsc CC=golang-dev https://golang.org/cl/4639066
-
Anthony Martin authored
R=rsc, dave CC=golang-dev https://golang.org/cl/4629064
-