aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-11-17crypto/rsa: add PKCS#1 v1.5 signature support.weekly.2009-11-17Adam Langley
R=rsc CC=golang-dev https://golang.org/cl/156051
2009-11-17asn1:Adam Langley
* add Marshal * add BitString.RightAlign * change to using a *time.Time (from time.Time) since that's what the time package uses. * return the unparsed data from Unmarshal. R=rsc CC=golang-dev https://golang.org/cl/156047
2009-11-17codereview: handle spaces and other unexpected chars in nicknamesRuss Cox
R=r https://golang.org/cl/157053
2009-11-17Let us have side by side git if we wantJosh Goebel
R=r, rsc https://golang.org/cl/156046
2009-11-17Add myself to authors and contributorsJosh Goebel
R=r https://golang.org/cl/156045
2009-11-17reflect: document that PkgPath and Name returnRuss Cox
empty string for unnamed types. Fixes #249. R=r https://golang.org/cl/156052
2009-11-17http: do not crash accessing r.Form if ParseForm failsRuss Cox
Fixes #233. R=dsymonds1 https://golang.org/cl/154179
2009-11-17runtime: do not create new threads during malloc.Russ Cox
the signal handling stack is a different size than the normal stack, so it cannot be allocated using the backup stack allocator. Fixes #250. R=agl1 CC=golang-dev https://golang.org/cl/157044
2009-11-17explain the situation with unicode and identifiersRob Pike
R=rsc CC=golang-dev https://golang.org/cl/156044
2009-11-17fix botchKen Thompson
R=rsc https://golang.org/cl/157046
2009-11-17change a n^2 algorithm inKen Thompson
data initialization to n*log(n) R=rsc https://golang.org/cl/158041
2009-11-17improve documentation of runtime. there was no mention of types.Rob Pike
R=rsc CC=golang-dev https://golang.org/cl/157042
2009-11-17case insensitive matching in CONTRIBUTORS fileRob Pike
R=rsc https://golang.org/cl/157043
2009-11-17Make non-errored RPC calls return 'nil' error to caller.Aron Nopanen
Error information is carried from RPC server to client in the string 'Error' field of rpc.Response. An empty string is sent in the success case. This empty string was being returned to the caller (of Client.Call or Client.Go), resulting in a non-nil error response. This change detects an empty-string Response.Error at the client, and translates it into a nil value in Call.Error. Tests updated to check error return in success cases. R=r, rsc https://golang.org/cl/154159
2009-11-17Add myself to 'AUTHORS' and 'CONTRIBUTORS'Aron Nopanen
R=rsc, r https://golang.org/cl/154175
2009-11-17codereview: discard \r characters (sigh)Russ Cox
R=r https://golang.org/cl/157041
2009-11-17cmd/cc: Fix -I switch to handle a path with blankspaces correctlySergio Luis O. B. Correia
Currently, -I switch can't deal with a path containing spaces. This commit simplify setinclude(), by removing the special case of a string that had spaces. After this change, setinclude() will merely add the given directories to the include path, if it does not yet exist, and this approach works. Will be needed for solving issue 115. R=agl1, rsc, iant2, r https://golang.org/cl/155059
2009-11-17Add myself to list of AUTHORS/CONTRIBUTORS for Go.Sergio Luis O. B. Correia
R=rsc https://golang.org/cl/154180
2009-11-17codereview: add clpatch --ignore_hgpatch_errors.Russ Cox
of limited utility but good for creating the metadata for an AUTHORS/CONTRIBUTORS change even if the patch doesn't apply cleanly. R=r https://golang.org/cl/154140
2009-11-17math: fix argument names in Atan2Russ Cox
(error introduced converting from arg1, arg2) Fixes #220. R=r https://golang.org/cl/156041
2009-11-17Make.pkg: have "make coverage" invoke 6cov with correct binaryRuss Cox
Fixes #239. R=r https://golang.org/cl/154176
2009-11-17net: enforce timeouts for ReadFrom/WriteToRuss Cox
Fixes #153. R=r https://golang.org/cl/154177
2009-11-17syscall: use correct pointer in recvfrom/sendto.Russ Cox
linux/386 stack trace: use 32-bit hex. Fixes #159. R=r https://golang.org/cl/154178
2009-11-17Pass ui into PostMessage to avoid nasty/confusing exceptionDevon H. O'Dell
R=rsc https://golang.org/cl/155079
2009-11-17FreeBSD-specific porting work.Devon H. O'Dell
cgo/libmach remain unimplemented. However, compilers, runtime, and packages are 100%. I still need to go through and implement missing syscalls (at least make sure they're all listed), but for all shipped functionality, this is done. Ship! ;) R=rsc, VenkateshSrinivas https://golang.org/cl/152142
2009-11-16Rework gobs to fix bad bug related to sharing of id's between encoder and ↵Rob Pike
decoder side. Fix is to move all decoder state into the decoder object. Fixes #215. R=rsc CC=golang-dev https://golang.org/cl/155077
2009-11-16fix bug causing empty strings to be become non-nil errors on client side of ↵Rob Pike
rpc connection. R=rsc CC=golang-dev https://golang.org/cl/155078
2009-11-16fix typo in Append return typeRob Pike
R=rsc https://golang.org/cl/155058
2009-11-16bug218.go: testcase for issue 238Robert Griesemer
R=rsc https://golang.org/cl/154172
2009-11-16runtime: make signal handler work on 386Russ Cox
R=r https://golang.org/cl/154171
2009-11-16gc: change "can we const evaluate this" from blacklist to whitelistRuss Cox
R=ken2 https://golang.org/cl/155074
2009-11-166l: fix divide by zero in glibc linker.Russ Cox
repeats 8l change http://code.google.com/p/go/source/detail?r=7594e16b5cf9 Fixes #179. R=iant https://golang.org/cl/154145
2009-11-16unsafe: documentation typo.Adam Langley
Fixes #236. R=r CC=golang-dev https://golang.org/cl/155072
2009-11-16Add id attribute to h2 and h3 tags so that they exist when referringRobert Griesemer
to generated pages even if Javascript has not introduced them yet. R=rsc https://golang.org/cl/154167
2009-11-16Don't emit line tags when source code is printed as part ofRobert Griesemer
package documentation using templates. The line tag interferes with the anchor tag introduces by the template. This fixes an an issue where some headers lost their ability to link to the respective source code. R=rsc https://golang.org/cl/154166
2009-11-16Add some primitive type aliases to exp/iterable and define Iter on them.David Symonds
R=rsc https://golang.org/cl/155065
2009-11-16 An asked-for-in #go-nuts extension to quickly create a repeatedDavid G. Andersen
copy of a string or a byte array. strings.Repeat("-", 50) bytes.Repeat(b, 99) R=rsc https://golang.org/cl/155063
2009-11-16Adding my name to authors/contributors. I'm waiting to hearDavid G. Andersen
back from Carnegie Mellon about whether they're interested in signing the agreement (do you know if they have already?). In the meantime, I'm submitting these changes on my own time. If CMU has already signed the corporate contributor agreement, please remove my name from the AUTHORS list. R=rsc https://golang.org/cl/154161
2009-11-16s/AJMP/AB/ to fix build breakage.Kai Backman
R=rsc https://golang.org/cl/155069
2009-11-16doc: fix typo.Adam Langley
Fixes #218 R=r CC=golang-dev https://golang.org/cl/155067
2009-11-16- Clarify that struct composite literal keys are field names not selectors.Robert Griesemer
- Slight re-phrasing of struct type section since "field name" was not properly introduced. Fixes #164. R=r, rsc, iant https://golang.org/cl/155061
2009-11-15Use ElementType consistently.Robert Griesemer
Fixes #173. R=r, rsc, r1 https://golang.org/cl/154156
2009-11-15gc: fix up floating point NaN comparisonsRuss Cox
Fixes #167. R=ken2 https://golang.org/cl/155062
2009-11-15crypto/md5: fix comment typo.Adam Langley
Fixes #210. R=rsc CC=golang-dev https://golang.org/cl/155057
2009-11-15add a paragraph about GOMAXPROCSRob Pike
R=rsc CC=golang-dev https://golang.org/cl/154153
2009-11-15godefs: avoid gcc 4'isms in command line.Russ Cox
Fixes #97. R=r https://golang.org/cl/155054
2009-11-15godocs.js: fix bad variable nameRuss Cox
Thanks to anno.langen. Fixes #103. R=r https://golang.org/cl/155050
2009-11-15makefiles: use correct gcc order in case --as-needed is in use.Russ Cox
Suggested by eostapets. Fixes #141. R=r https://golang.org/cl/155049
2009-11-15cgo: arrange for English error messagesRuss Cox
Fixes #21. R=r https://golang.org/cl/155048
2009-11-15runtime: avoid crash in CallerRuss Cox
Fixes #176. R=r https://golang.org/cl/154146