- 2e4334e minor manual format corrections by Robert Griesemer · 15 years ago
- 295ceb4 remove uses of string concatenation from src and misc directory by Robert Griesemer · 15 years ago
- a8ed75d added benchmarks to rand_test.go; by Roger Peppe · 15 years ago
- 51f2932 syscalls can return negative i/o counts. fix bugs in ReadAt and WriteAt not to include by Rob Pike · 15 years ago
- 9165331 Make the operations on the global rng thread safe. by Roger Peppe · 15 years ago
- 8a5b76c json package: Fixed handling of nil values by Ross Light · 15 years ago
- 6ebfd1e Added XTEA block cipher package to src/pkg/crypto by Adrian O'Grady · 15 years ago
- 0400a7f runtime: start new darwin/amd64 threads on correct stack, by Russ Cox · 15 years ago
- 132c42f bufio: use copy - significant speedup for writers by Russ Cox · 15 years ago
- 5a4a08f Fix stack on FreeBSD / add stack check across the board by Devon H. O'Dell · 15 years ago
- cdce732 When SA_SIGINFO is set, we should use __sa_sigaction on FreeBSD by Devon H. O'Dell · 15 years ago
- 0d3301a runtime: don't touch pages of memory unnecessarily. by Russ Cox · 15 years ago
- 33649bd runtime: introduce unsafe.New and unsafe.NewArray by Russ Cox · 15 years ago
- a4a8224 use a bootstrap array to avoid allocation for short vectors by Robert Griesemer · 15 years ago
- 8c22dd2 Remove copyBytes completely in favor of copy. by Christopher Wedgwood · 15 years ago
- 20c1ec2 pick off special one-byte case in copy. worth 2x in benchmarks (38ns->16ns). by Rob Pike · 15 years ago
- 80e17d6 the AST walker currently provides no way to find out how the by Roger Peppe · 15 years ago
- f91cd44 save a few ns by inlining (which mostly simplifies things anyway). by Rob Pike · 15 years ago
- 353ef80 unexport Fmt. it's not needed outside this package any more by Rob Pike · 15 years ago
- 4c0e51c Make printing faster by avoiding mallocs and some other advances. by Rob Pike · 15 years ago
- ed6fd1b runtime: disable pointer scan optimization * broken by reflect, gob by Russ Cox · 15 years ago
- 44c1eb6 Fix syscall.Statfs and syscall.Fstatfs for 386 GNU/Linux. by Ian Lance Taylor · 15 years ago
- 864c757 gc/runtime: pass type structure to makeslice. by Russ Cox · 15 years ago
- 2807621 net: more fiddling with the udp test. by Russ Cox · 15 years ago
- 9e0b68d Add syscall.Rename for NaCl. Fixes NaCl build. by Ian Lance Taylor · 15 years ago
- e79bcf8 runtime: shift the index for the sort by one. by Adam Langley · 15 years ago
- 0b5cc31 Add os.Rename. by Ian Lance Taylor · 15 years ago
- d1740bb Remove global chanlock. by Adam Langley · 15 years ago
- d6b3f37 bytes: asm for bytes.IndexByte by Russ Cox · 15 years ago
- 609eeee make Native Client support build again, by Russ Cox · 15 years ago
- 11384ee testing: compute MB/s in benchmarks by Russ Cox · 15 years ago
- 4ed5717 avoid an allocation inside bytes.Buffer by providing a static array. by Rob Pike · 15 years ago
- 3b858fb net: turn off empty packet test by default by Russ Cox · 15 years ago
- f3d63be Add Count, Cycle, ZipWith, GroupBy, Repeat, RepeatTimes, Unique to exp/iterable. by Michael Elkins · 15 years ago
- e93132c crypto/rsa: fix shadowing error. by Adam Langley · 15 years ago
- cf37254 runtime: fix Caller crash on 386. by Russ Cox · 15 years ago
- 7e5055c runtime: malloc fixes by Russ Cox · 15 years ago
- 10a349a The String() method requires global state that makes it not work outside of this package, by Rob Pike · 15 years ago
- fcc4dd6 error propagation in gob/encoder. by Rob Pike · 15 years ago
- bc3e347 Add ReadFrom and WriteTo methods to bytes.Buffer, to enable i/o without buffer allocation. by Rob Pike · 15 years ago
- 6db683f - include type-associated consts and vars when filtering a PackageDoc by Robert Griesemer · 15 years ago
- d984f98 minor improvement to formatting: don't allocate padding strings every time. by Rob Pike · 15 years ago
- b0683bd move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package. by Rob Pike · 15 years ago
- 1eba218 Runes: turn string into []int Split: fixed typo in documentation by Peter Froehlich · 15 years ago
- dc7355a Add flag -tabindent to gofmt: forces use of by Robert Griesemer · 15 years ago
- e89441b net: test and fix support for 0-length datagram packets. by Russ Cox · 15 years ago
- d8bc797 apply gofmt to json files by Robert Griesemer · 15 years ago
- 114f73f fix segfault printing errors. add test case and improve messages. by Rob Pike · 15 years ago
- f6c0eba test that arrays work properly. by Rob Pike · 15 years ago
- 9e55d0d time: another bug in SecondsToUTC. added random test to look for more. by Russ Cox · 15 years ago
- 952b91e Add Shutdown to 32-bit GNU/Linux build. by Ian Lance Taylor · 15 years ago
- 8d652ee time: fix handling of Jan 1 1601, 1201, 801, ... by Russ Cox · 15 years ago
- eb16346 net: fix netFD.Close races by Devon H. O'Dell · 15 years ago
- ff3ea68 explicitly catch attempt to decode into a value - must be a pointer to see the result. by Rob Pike · 15 years ago
- f9810f1 make io.ReadFile use Stat.Size as a hint for preallocation by Rob Pike · 15 years ago
- 49ebcfb Add syscall.Shutdown to FreeBSD i386/amd64 by Devon H. O'Dell · 15 years ago
- 0b126c1 syscall: add Shutdown on OS X, add more constants in mkerror.sh by Russ Cox · 15 years ago
- ceb1fe2 update package unicode to Unicode 5.2 by Rob Pike · 15 years ago
- 2a54997 gob: fix build by Russ Cox · 15 years ago
- 4f6dbc6 Explicitly return values where it's shadowing the parameter. by Christopher Wedgwood · 15 years ago
- a0f742d more gob bugs by Rob Pike · 15 years ago
- 598f3e2 A first stab at porting the XCB X11 protocol bindings to go. by Tor Andersson · 15 years ago
- 9d50b46 json: Decode into native Go data structures by Sergey 'SnakE' Gromov · 15 years ago
- c1767db Typo in comment. Fixes #358. by Robert Griesemer · 15 years ago
- 12206f6 sync.RWMutex: rewritten to add support for concurrent readers. by Péter Szabó · 15 years ago
- 229807c Added a method on UDPConn so they can actually send broadcast packets. by Jonathan Wills · 15 years ago
- a85c258 a[b:len(a)] -> a[b:] by Christopher Wedgwood · 15 years ago
- 68d3b6e Handle \r as a whitespace when parsing JSON string. Fixes #272. by Andrew Skiba · 15 years ago
- c78710f Add trivial whitespace to CorruptInputError strings. by Christopher Wedgwood · 15 years ago
- f0c9719 Minimise bitrot: bytes.Copy -> copy (compile tested only) by Christopher Wedgwood · 15 years ago
- ed62d27 template: two bug fixes / nits by Russ Cox · 15 years ago
- be98bc4 websocket: avoid $GOROOT in case it has spaces by Russ Cox · 15 years ago
- 4689265 crypto/md4, exp/draw/x11: fix makefile to build when GOROOT has whitespaces by Sergio Luis O. B. Correia · 15 years ago
- f9f0184e Add WebSocket server framework hooked into http. by Fumitoshi Ukai · 15 years ago
- f3e0f21 Correct expression level for argument lists. Fixes #352. by Robert Griesemer · 15 years ago
- b5358e0 a few utf8 benchmarks. on my mac: by Rob Pike · 15 years ago
- 773e779 rewrite RuneCountInString to use range. by Rob Pike · 15 years ago
- f65427a Initial exp/draw/x11 implementation. by Nigel Tao · 15 years ago
- a0c5543 fix weird all.bash failures by running deps.bash before make clean runs in pkg directory. by Rob Pike · 15 years ago
- 28f19140 Handle presence of illegal semicolon after package clause better. by Robert Griesemer · 15 years ago
- a38ec58 Replace sort.Sort call with heapify algorithm in Init. by Robert Griesemer · 15 years ago
- bd80b5a test case for large angles in trig functions by Ken Thompson · 15 years ago
- b2bc1db bad sin/cos for large angles. fixes #326. by Ken Thompson · 15 years ago
- c6f8df0 fix for broken build (built-in new was invisible due to a parameter called 'new') by Robert Griesemer · 15 years ago
- 001a8b1 Change to container/vector interface: by Robert Griesemer · 15 years ago
- 9da8d88 A quick fix to ensure that json.Marshal returns errors correctly, as well as some error-related tests by Michael Hoisie · 15 years ago
- 5f484ec http: redirect to correct URL by Russ Cox · 15 years ago
- b320cf5 add Take, TakeWhile, Drop, DropWhile to exp/iterable by Michael Elkins · 15 years ago
- c14e265 print error's string when panicking. by Rob Pike · 15 years ago
- f586870 Add benchmarks for commonly used routines. by Trevor Strohman · 15 years ago
- c95c27a json: expose map in generic representation by Russ Cox · 15 years ago
- 8ebd7f7 Provides implementation of MD4 hashing algorithm. by Chris Lennert · 15 years ago
- 6fc8207 go: makes it build for the case $GOROOT has whitespaces by Sergio Luis O. B. Correia · 15 years ago
- edf7485 gofmt -r: documentation and minor fixes by Russ Cox · 15 years ago
- 9e95d97 Fix crash in xml.Unmarshal. Occasionally while running a scrape of some xml with many goroutines by Vish Subramanian · 15 years ago
- b90f673 io.ReadWriter: fix doc comment (ReadWrite -> ReadWriter) by Russ Cox · 15 years ago
- 3b7f552 fix bug in prefix code: must stop one character before any potential match of an empty string by Rob Pike · 15 years ago
- b050a1b Fix doc striing for NewReadLogger. by Rob Pike · 15 years ago
- 6e0842d crypto/tls: add initial client implementation. by Adam Langley · 15 years ago
- 28e392d gofmt: add -r flag to rewrite source code according to pattern by Russ Cox · 15 years ago