- 10 Aug, 2010 1 commit
-
-
Nigel Tao authored
R=r, rsc, gri, rsc1 CC=golang-dev https://golang.org/cl/1814044
-
- 28 Jul, 2010 1 commit
-
-
Rob Pike authored
Fix the documentation of newline handling in *f routines to match the implementation. R=rsc CC=golang-dev https://golang.org/cl/1899042
-
- 26 May, 2010 1 commit
-
-
Rob Pike authored
Still to do: - composite types - user-defined scanners - format-driven scanning The package comment will be updated when more of the functionality is in place. R=rsc CC=golang-dev https://golang.org/cl/1252045
-
- 24 Nov, 2009 1 commit
-
-
Sergio Luis O. B. Correia authored
the bash scripts and makefiles for building go didn't take into account the fact $GOROOT / $GOBIN could both be directories containing whitespaces, and was not possible to build it in such a situation. this commit adjusts the various makefiles/scripts to make it aware of that possibility, and now it builds successfully when using a path with whitespaces as well. Fixes #115. R=rsc, dsymonds1 https://golang.org/cl/157067
-
- 12 Aug, 2009 1 commit
-
-
Russ Cox authored
whole-package compilation. new Makefiles, tests now in separate package bytes flag fmt io math once os reflect strconv sync time utf8 delete import "xxx" in package xxx. inside package xxx, xxx is not declared anymore so s/xxx.//g delete file and package level forward declarations. note the new internal_test.go and sync and strconv to provide public access to internals during testing. the installed version of the package omits that file and thus does not open the internals to all clients. R=r OCL=33065 CL=33097
-
- 09 Jun, 2009 1 commit
-
-
Rob Pike authored
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102
-
- 06 Jun, 2009 1 commit
-
-
Russ Cox authored
R=r DELTA=761 (1 added, 433 deleted, 327 changed) OCL=29927 CL=29966
-
- 17 Apr, 2009 1 commit
-
-
Russ Cox authored
import ( "vector" -> "container/vector" "ast" -> "go/ast" "sha1" -> "hash/sha1" etc. ) and update Makefiles. Because I did the conversion semi-automatically, I sorted all the import blocks as a post-processing. Some files have therefore changed that didn't strictly need to. Rename local packages to lower case. The upper/lower distinction doesn't work on OS X and complicates the "single-package directories with the same package name as directory name" heuristic used by gobuild and godoc to create the correlation between source and binary locations. Now that we have a plan to avoid globally unique names, the upper/lower is unnecessary. The renamings will cause trouble for a few users, but so will the change in import paths. This way, the two maintenance fixes are rolled into one inconvenience. R=r OCL=27573 CL=27575
-
- 16 Apr, 2009 1 commit
-
-
Russ Cox authored
fix bug in RPC.go (import "RPC" not "rpc.pb") R=r DELTA=483 (261 added, 64 deleted, 158 changed) OCL=27547 CL=27549
-
- 20 Nov, 2008 1 commit
-
-
Rob Pike authored
this causes complications R=rsc DELTA=1724 (849 added, 856 deleted, 19 changed) OCL=19667 CL=19667
-
- 19 Nov, 2008 3 commits
-
-
Russ Cox authored
R=r DELTA=55 (41 added, 11 deleted, 3 changed) OCL=19594 CL=19598
-
Russ Cox authored
delete it in make clean. R=r DELTA=10 (0 added, 0 deleted, 10 changed) OCL=19542 CL=19581
-
Russ Cox authored
* handles multiple packages per directory * scans directory for files if given no arguments * infers package name * includes test rule invoking gotest R=r DELTA=746 (444 added, 150 deleted, 152 changed) OCL=19504 CL=19521
-
- 17 Nov, 2008 1 commit
-
-
Russ Cox authored
in new package strconv. move atoi etc to strconv too. update fmt, etc to use strconv. R=r DELTA=2232 (1691 added, 424 deleted, 117 changed) OCL=19286 CL=19380
-
- 24 Oct, 2008 2 commits
-
-
Rob Pike authored
uses reflection to determine arguments. for now, the arguments must be provided as a struct; the compiler will soon do the packaging automatically for "..." parameters. R=rsc DELTA=1436 (909 added, 520 deleted, 7 changed) OCL=17823 CL=17831
-
Rob Pike authored
some build dependencies need rearrangement because fmt will depend on reflect R=rsc DELTA=1091 (567 added, 521 deleted, 3 changed) OCL=17792 CL=17796
-
- 23 Sep, 2008 1 commit
-
-
Rob Pike authored
R=rsc DELTA=51 (50 added, 0 deleted, 1 changed) OCL=15665 CL=15667
-
- 19 Sep, 2008 1 commit
-
-
Russ Cox authored
use gobuild-generated Makefile for math and os. other makefile tweaks. move math/main.go to test/math.go R=r OCL=15529 CL=15537
-
- 18 Sep, 2008 1 commit
-
-
Russ Cox authored
use -j4 (4-way parallel) in make.bash. halves time for make.bash on r45 also add libregexp, acid to default build R=r DELTA=90 (39 added, 37 deleted, 14 changed) OCL=15485 CL=15487
-
- 17 Sep, 2008 1 commit
-
-
Russ Cox authored
rename AddrToInt, StatToInt, etc -> BytePtr, StatPtr, ... R=r OCL=15450 CL=15456
-
- 11 Sep, 2008 2 commits
-
-
Rob Pike authored
tweak os to adjust move StringToBytes into syscall, at least for now this program still works: package main import os "os" func main() { os.Stdout.WriteString("hello, world\n"); a, b := os.NewFD(77).WriteString("no way"); os.Stdout.WriteString(b.String() + "\n"); } R=rsc DELTA=263 (59 added, 176 deleted, 28 changed) OCL=15153 CL=15153
-
Rob Pike authored
break lib/os into multiple source files R=rsc DELTA=189 (178 added, 4 deleted, 7 changed) OCL=15149 CL=15152
-
- 10 Sep, 2008 2 commits
- 05 Sep, 2008 1 commit
-
-
Rob Pike authored
fix a typo in syscall/Makefile R=ken OCL=14863 CL=14863
-
- 29 Jul, 2008 1 commit
-
-
Rob Pike authored
R=gri OCL=13546 CL=13546
-
- 26 Jul, 2008 2 commits