summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2010-06-30 net: add support for DNS SRV requests.Kirklin McDonald2-23/+82
Fixes issue 758. R=rsc, adg CC=golang-dev http://codereview.appspot.com/1078041 Committer: Andrew Gerrand <adg@golang.org>
2010-06-29runtime: fix scheduling bug - world wasn't stoppingRuss Cox1-1/+1
Fixes issue 886. R=r CC=golang-dev http://codereview.appspot.com/1667051
2010-06-29strconv: fix %.1f, 0.09Rob Pike3-6/+21
Fixes issue 822. Credit to http://codereview.appspot.com/1442041 by danielfleischman R=rsc CC=golang-dev http://codereview.appspot.com/1738047
2010-06-29strconv: fix %.2g, 40Rob Pike2-4/+21
Fixes issue 845. R=rsc CC=golang-dev http://codereview.appspot.com/1673049
2010-06-29code gen bug in len(nil) and cap(nil)Ken Thompson3-0/+12
fixes issue 892 R=rsc CC=golang-dev http://codereview.appspot.com/1745042
2010-06-29Move the function Run() back into fd.go.Vinu Rajashekhar2-46/+44
R=iant CC=golang-dev, rsc http://codereview.appspot.com/1748041 Committer: Ian Lance Taylor <iant@golang.org>
2010-06-29gob: a couple of tiny simplifications using Kind()Rob Pike3-12/+26
R=rsc CC=golang-dev http://codereview.appspot.com/1695046
2010-06-29runtime: fix windows buildAlex Brainman1-0/+2
R=golang-dev, iant CC=golang-dev http://codereview.appspot.com/1747041 Committer: Ian Lance Taylor <iant@golang.org>
2010-06-29exp/draw/x11: implement the mapping from keycodes to keysyms.Nigel Tao1-31/+78
R=rsc CC=golang-dev, rog http://codereview.appspot.com/1739042
2010-06-28Only catch all signals if os/signal package imported.Ian Lance Taylor13-12/+27
Fixes issue 776. R=rsc CC=golang-dev http://codereview.appspot.com/1745041
2010-06-28netchan: use gob DecodeValue to eliminate the need for a pointer valueRob Pike4-40/+28
in Import and Export. R=rsc CC=golang-dev http://codereview.appspot.com/1707047
2010-06-28gob: add DecodeValue and EncodeValueRob Pike5-18/+30
R=rsc CC=golang-dev http://codereview.appspot.com/1698045
2010-06-28compiler fatal error in switch.Ken Thompson1-5/+6
fixes issue 867. R=rsc CC=golang-dev http://codereview.appspot.com/1691045
2010-06-29syscall: Add syscall_bsd.go to zsycall_freebsd_386.goPeter Mundy1-1/+13
Revision: 5885c9d10f created syscall_bsd.go for code used by Darwin and other *BSDs, which should have included FreeBSD. mksyscall.sh to generate new zsyscall_freebsd_386.go. Fixes issue 862. R=golang-dev, adg CC=golang-dev http://codereview.appspot.com/1701048 Committer: Andrew Gerrand <adg@golang.org>
2010-06-28rpc: allow non-struct args and reply (they must still be pointers)Rob Pike2-41/+75
R=rsc CC=golang-dev http://codereview.appspot.com/1722046
2010-06-28netchan: allow chan of basic types now that gob can handle suchRob Pike3-24/+16
R=rsc CC=golang-dev http://codereview.appspot.com/1741041
2010-06-28fmt.Printf: fix bug in handling of %#v.Rob Pike3-63/+68
nice side effect: slices now obey their format verb. example: fmt.Printf("%q\n", []string{"a"}) R=rsc CC=golang-dev http://codereview.appspot.com/1729045
2010-06-28gob: allow transmission of things other than structs at the top level.Rob Pike6-113/+234
also fix a bug handling nil maps: before, would needlessly send empty map R=rsc CC=golang-dev http://codereview.appspot.com/1739043
2010-06-28Move the functions, newPollServer and Run, from fd.goVinu Rajashekhar3-75/+88
to a new source file. R=iant, rsc CC=golang-dev http://codereview.appspot.com/1670046 Committer: Ian Lance Taylor <iant@golang.org>
2010-06-288g compiler missing call to splitclean().Ken Thompson1-1/+4
fixes issue 887. R=rsc CC=golang-dev http://codereview.appspot.com/1675050
2010-06-27optimization of static initializationKen Thompson4-128/+202
R=rsc CC=golang-dev http://codereview.appspot.com/1677049
2010-06-24fmt.Scan: fix handling of EOFs.Rob Pike2-2/+53
Fixes issue 876. R=rsc CC=golang-dev http://codereview.appspot.com/1675048
2010-06-24gob: add support for complex numbersRob Pike4-69/+224
R=rsc CC=golang-dev http://codereview.appspot.com/1708048
2010-06-23gc: fix crash for nested complex divisionRuss Cox1-1/+1
R=ken2 CC=golang-dev http://codereview.appspot.com/1720043
2010-06-23Build draw/x11. Skip for test.Christopher Wedgwood1-0/+2
R=nigeltao_golang CC=golang-dev, r, rsc http://codereview.appspot.com/1690043 Committer: Nigel Tao <nigeltao@golang.org>
2010-06-22regexp: restore accidentally deleted test item.Rob Pike1-0/+1
R=rsc CC=golang-dev http://codereview.appspot.com/1714044
2010-06-22regexp: bug fix: need to track whether match begins with fixed prefix.Rob Pike2-17/+20
Fixes issue 872. R=rsc CC=golang-dev http://codereview.appspot.com/1731043
2010-06-22debug/dwarf: update PDF link.Rob Pike1-1/+1
Fixes issue 881. R=iant CC=golang-dev http://codereview.appspot.com/1696044
2010-06-21runtime: split extern.go into debug.go, extern.go, sig.go.Russ Cox6-152/+164
move mal next to the other malloc functions. R=r CC=golang-dev http://codereview.appspot.com/1701045
2010-06-21big, bytes: move assembly externs to separate fileRuss Cox6-14/+28
to make it easier to build package without assembly. R=r, r2 CC=golang-dev http://codereview.appspot.com/1680045
2010-06-21net: move Dial, Listen out of net.go.Russ Cox3-172/+180
now net.go is only type definitions, not active code. R=r CC=golang-dev http://codereview.appspot.com/1708046
2010-06-21ld: add -u flag to check safe bits; discard old -u, -x flagsRuss Cox4-31/+28
R=r, r2 CC=golang-dev http://codereview.appspot.com/1707043
2010-06-21runtime: delete old typesRuss Cox1-36/+0
R=r CC=golang-dev http://codereview.appspot.com/1715043
2010-06-21net: Fix ICMP test.Christopher Wedgwood1-2/+2
Ping IDs should be limited to 16-bits. Fix failure printing. R=rsc CC=golang-dev, jean-christophe smith <jeanchristophe.smith http://codereview.appspot.com/1682043 Committer: Russ Cox <rsc@golang.org>
2010-06-21syslog: use local network for testsRuss Cox1-1/+1
R=r CC=golang-dev http://codereview.appspot.com/1724042
2010-06-21reflect: add Type.Bits method, add tags to prohibit conversionsRuss Cox8-141/+112
gob: substitute slice for map R=r CC=golang-dev http://codereview.appspot.com/1699045
2010-06-21gc: include struct field tags in type equalityRuss Cox1-1/+13
R=ken2 CC=golang-dev http://codereview.appspot.com/1667048
2010-06-21pkg/Makefile: allow DISABLE_NET_TESTS=1 to disable network testsRuss Cox4-11/+16
netchan, rpc, websocket: run test servers on 127.0.0.1, to avoid conflict with OS X firewall. TBR=r CC=golang-dev http://codereview.appspot.com/1689046
2010-06-21goinstall: process dependencies for package mainRoger Peppe3-16/+30
Currently to install a command, you have to manually goinstall each of the remote packages that it depends on. This patch lets goinstall P work where P is contains files in package main. It does not actually build the package, but it installs all of its dependencies and prints a message to that effect. R=rsc CC=golang-dev http://codereview.appspot.com/1301043 Committer: Russ Cox <rsc@golang.org>
2010-06-20undo changes accidentally included in 09c5add99d50Russ Cox6-37/+20
R=ken2 CC=golang-dev http://codereview.appspot.com/1736042
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox25-937/+623
update other code to match. R=r CC=golang-dev http://codereview.appspot.com/1680044
2010-06-20gc: delete debug printRuss Cox1-1/+0
R=ken2 CC=golang-dev http://codereview.appspot.com/1732043
2010-06-20gc: better error messages for interface failures, conversionsRuss Cox13-56/+139
x.go:13: cannot use t (type T) as type Reader in assignment: T does not implement Reader (Read method requires pointer receiver) x.go:19: cannot use q (type Q) as type Reader in assignment: Q does not implement Reader (missing Read method) have read() want Read() x.go:22: cannot use z (type int) as type Reader in assignment: int does not implement Reader (missing Read method) x.go:24: too many arguments to conversion to complex: complex(1, 3) R=ken2 CC=golang-dev http://codereview.appspot.com/1736041
2010-06-20gc: fix build - subnode not addable in complexgenRuss Cox1-6/+9
R=ken2 CC=golang-dev http://codereview.appspot.com/1677047
2010-06-18nacl: fix buildRuss Cox2-2/+2
TBR=r CC=golang-dev http://codereview.appspot.com/1706044
2010-06-18strconv: add AtofN, FtoaNRuss Cox4-0/+47
R=r CC=golang-dev http://codereview.appspot.com/1700043
2010-06-18fmt.Scanf: improve error message when input does not match formatRob Pike2-4/+7
R=rsc CC=golang-dev http://codereview.appspot.com/1693043 Committer: Rob Pike <r@golang.org>
2010-06-18complex divide: match C99 implementationRuss Cox1-23/+47
R=iant, ken2, r, r2, ken3 CC=golang-dev http://codereview.appspot.com/1686044
2010-06-16http: reply to Expect 100-continue requests automaticallyBrad Fitzpatrick2-0/+35
This CL replaces my earlier http://codereview.appspot.com/1640044/show in which Continue handling was explicit. Instead, this CL makes it automatic. Reading from Body() is an implicit acknowledgement that the request headers were fine and the body is wanted. In that case, the 100 Continue response is written automatically when the request continues the "Expect: 100-continue" header. R=rsc, adg CC=golang-dev http://codereview.appspot.com/1610042 Committer: Russ Cox <rsc@golang.org>
2010-06-16cmd/gotest: Delete temporary _testmain.go files.Nigel Tao1-1/+1
R=rsc TBR=rsc CC=golang-dev http://codereview.appspot.com/1675047