- 15 Nov, 2009 12 commits
-
-
Russ Cox authored
* check for struct literal assignment to private fields. * record, fix crash involving parallel map assignment. * avoid infinite recursion in exportassignok. * make floating point bounds check precise. * avoid crash on invalid receiver. * add context to error about implicit assignment. Fixes #86. Fixes #88. Fixes #158. Fixes #174. Fixes #201. Fixes #204. R=ken2 https://golang.org/cl/154144
-
Russ Cox authored
Fixes #125. R=r https://golang.org/cl/154143
-
Russ Cox authored
Fixes #190. R=r https://golang.org/cl/154142
-
Rob Pike authored
Fixes #196. R=rsc https://golang.org/cl/154152
-
Rob Pike authored
thanks to ulrik.sverdrup for the test case. Fixes #191. R=rsc CC=golang-dev https://golang.org/cl/155056
-
Robert Griesemer authored
Fixes #189. R=r CC=rsc https://golang.org/cl/155055
-
Russ Cox authored
Fixes #192. R=ken2 https://golang.org/cl/155047
-
Russ Cox authored
Fixes bug 168. Alternative to https://golang.org/cl/152143. R=ken2 https://golang.org/cl/155042
-
Kai Backman authored
introduction. R=rsc https://golang.org/cl/152109
-
Adam Langley authored
We are dealing with the multiplicative group ℤ/pqℤ. Multiples of either p or q are not members of the group since they cannot have an inverse. (Such numbers are 0 in the subgroup ℤ/pℤ.) With p and q of typical size (> 512 bits), the probability of a random blind [1..pq-1] being a multiple of p or q is negligible. However, in the unit tests, much smaller sizes are used and the event could occur. This change checks the result of the ext GCD and deals with this case. It also increases the size of p and q in the unit test as a large number of the keys selected were p, q = 227,169. R=rsc CC=golang-dev https://golang.org/cl/154141
-
Kai Backman authored
R=rsc https://golang.org/cl/154097
-
Russ Cox authored
versions of static checks in receiver1.go R=r https://golang.org/cl/155045
-
- 14 Nov, 2009 13 commits
-
-
Devon H. O'Dell authored
This does still contain some FreeBSD-specific bits, but it's a pain to do partial diffs. R=rsc https://golang.org/cl/152138
-
Devon H. O'Dell authored
R=rsc https://golang.org/cl/155041
-
Môshe van der Sterre authored
The ByteOrder.Put* methods are already available, this change uses them to implement the Write function. R=golang-dev, agl1, rsc, r https://golang.org/cl/152141
-
Môshe van der Sterre authored
As Adam Langley mentioned, this should go in with https://golang.org/cl/152141 R=rsc CC=agl1 https://golang.org/cl/154138
-
Russ Cox authored
Fixes #183. R=ken https://golang.org/cl/154139
-
Rob Pike authored
performance hit of about 20% but more intuitive results for submatches. we need a good regexp package at some point. Fixes #110. R=rsc CC=golang-dev https://golang.org/cl/152131
-
Abhinav Gupta authored
Fixes #128. R=r, rsc https://golang.org/cl/154126
-
Abhinav Gupta authored
R=rsc https://golang.org/cl/154128
-
Russ Cox authored
Fixes #171. Fixes #172. R=agl1 https://golang.org/cl/154136
-
David Titarenco authored
Commented both flush methods so people know what they are looking at. This is a necessary fix for streaming and long polling HTTP services. Fixes #93. R=r, rsc, david.titarenco https://golang.org/cl/154099
-
David Titarenco authored
R=rsc https://golang.org/cl/153057
-
Nigel Tao authored
R=rsc https://golang.org/cl/154125
-
Rob Pike authored
R=rsc https://golang.org/cl/152128
-
- 13 Nov, 2009 15 commits
-
-
James Aguilar authored
colon-less statement would be indented one stop too many. R=rsc, aclements CC=aclements https://golang.org/cl/154096
-
James Aguilar authored
R=rsc https://golang.org/cl/152101
-
Adam Langley authored
I screwed up and didn't write one of the code review changes to disk before submitting. TBR=rsc R=rsc https://golang.org/cl/154122
-
Rob Pike authored
-flag true does not work although -flag=true does. Fixes #139. R=iant CC=golang-dev https://golang.org/cl/154118
-
Russ Cox authored
use bash builtin time instead of assuming /usr/bin/time exists. R=r https://golang.org/cl/152124
-
Adam Langley authored
Fixies issue 114. R=rsc CC=golang-dev https://golang.org/cl/154121
-
Russ Cox authored
(chmod 0 doesn't cause errors for root) Fixes #22. R=gri https://golang.org/cl/152120
-
Adam Langley authored
Fixes #147. R=rsc CC=golang-dev https://golang.org/cl/152123
-
Adam Langley authored
SELinux will cause mmap to fail when we request w+x memory unless the user has configured their policies. We have a warning in make.bash, but it's quite likely that the policy will be reset at some point and then all their binaries start failing. This patch prints a warning on Linux when mmap fails with EACCES. R=rsc CC=golang-dev https://golang.org/cl/152086
-
Russ Cox authored
<stdio.h>, which we weren't even #including R=r https://golang.org/cl/154108
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/152118
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/152117
-
Kevin Ballard authored
R=agl, agl1 https://golang.org/cl/152078
-
Russ Cox authored
R=agl1 https://golang.org/cl/152114
-
Robert Griesemer authored
(Making it work correctly with -spaces is a bit of work and the output won't make much sense as it is intended as input to tabwriter.) Fixes #100. R=rsc https://golang.org/cl/154102
-