<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go, branch weekly</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=weekly</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=weekly'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2012-03-28T12:41:03Z</updated>
<entry>
<title>weekly.2012-03-27</title>
<updated>2012-03-28T12:41:03Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2012-03-28T12:41:03Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=3895b5051df256b442d0b0af50debfffd8d75164'/>
<id>urn:sha1:3895b5051df256b442d0b0af50debfffd8d75164</id>
<content type='text'>
</content>
</entry>
<entry>
<title>doc: added The Go image package article</title>
<updated>2012-03-28T03:20:51Z</updated>
<author>
<name>Francisco Souza</name>
<email>franciscossouza@gmail.com</email>
</author>
<published>2012-03-28T03:20:51Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=18f1a71dc282689f29eeb51e248e6f79a970965b'/>
<id>urn:sha1:18f1a71dc282689f29eeb51e248e6f79a970965b</id>
<content type='text'>
Orignally published on The Go Programming Language, September 21, 2011.

http://blog.golang.org/2011/09/go-image-package.html

Update #2547

R=adg, nigeltao
CC=golang-dev
https://golang.org/cl/5933049
</content>
</entry>
<entry>
<title>misc/dist: it sucks hwhen you forget to fix typos</title>
<updated>2012-03-28T01:45:39Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2012-03-28T01:45:39Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=81dbec12c8ee01848c0f3edb93149ab56adefc79'/>
<id>urn:sha1:81dbec12c8ee01848c0f3edb93149ab56adefc79</id>
<content type='text'>
R=golang-dev
CC=golang-dev
https://golang.org/cl/5937049
</content>
</entry>
<entry>
<title>path/filepath: correct comment in EvalSymlinks</title>
<updated>2012-03-28T01:27:36Z</updated>
<author>
<name>Alex Brainman</name>
<email>alex.brainman@gmail.com</email>
</author>
<published>2012-03-28T01:27:36Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=48a2c50a18253a034fd85a7c75bd52ebf383a620'/>
<id>urn:sha1:48a2c50a18253a034fd85a7c75bd52ebf383a620</id>
<content type='text'>
R=golang-dev, r
CC=golang-dev, hcwfrichter
https://golang.org/cl/5934046
</content>
</entry>
<entry>
<title>misc/dist: support upload only (no build)</title>
<updated>2012-03-28T01:24:43Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2012-03-28T01:24:43Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=70a8948a39eb2bcca635e2a3beb39812bb7122db'/>
<id>urn:sha1:70a8948a39eb2bcca635e2a3beb39812bb7122db</id>
<content type='text'>
R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/5940050
</content>
</entry>
<entry>
<title>doc: link to Go Project Dashboard from package list</title>
<updated>2012-03-28T00:38:34Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2012-03-28T00:38:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=16fd9fd64083872fe7c2bc4d4585556731634898'/>
<id>urn:sha1:16fd9fd64083872fe7c2bc4d4585556731634898</id>
<content type='text'>
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5937048
</content>
</entry>
<entry>
<title>cmd/godoc: use virtual filesystem to implement -templates flag</title>
<updated>2012-03-27T22:13:48Z</updated>
<author>
<name>Andrew Gerrand</name>
<email>adg@golang.org</email>
</author>
<published>2012-03-27T22:13:48Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=d71d11fa93b880ee47f0d3c4b6115fb1642681b0'/>
<id>urn:sha1:d71d11fa93b880ee47f0d3c4b6115fb1642681b0</id>
<content type='text'>
R=golang-dev, gri, rsc
CC=golang-dev
https://golang.org/cl/5921045
</content>
</entry>
<entry>
<title>runtime: work around false negative in deadlock detection</title>
<updated>2012-03-27T16:22:19Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2012-03-27T16:22:19Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=5eb007dedeb59a52a3000202dcb162a3677a384b'/>
<id>urn:sha1:5eb007dedeb59a52a3000202dcb162a3677a384b</id>
<content type='text'>
Not a complete fix for issue 3342, but fixes the trivial case.
There may still be a race in the instants before and after
a scavenger-induced garbage collection.

Intended to be "obviously safe": a call to runtime·gosched
before main.main is no different than a call to runtime.Gosched
at the beginning of main.main, and it is (or had better be)
safe to call runtime.Gosched at any point during main.

Update #3342.

R=iant
CC=golang-dev
https://golang.org/cl/5919052
</content>
</entry>
<entry>
<title>cmd/go: respect $GOBIN always</title>
<updated>2012-03-27T15:57:39Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2012-03-27T15:57:39Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=9d7076b178e3b688a8421a8ce02466a3701d31a0'/>
<id>urn:sha1:9d7076b178e3b688a8421a8ce02466a3701d31a0</id>
<content type='text'>
Another attempt at https://golang.org/cl/5754088.

Before, we only consulted $GOBIN for source code
found in $GOROOT, but that's confusing to explain
and less useful.  The new behavior lets users set
GOBIN=$HOME/bin and have all go-compiled binaries
installed there.

Tested a few cases in test.bash.

Ran all.bash with and without $GOBIN and it works.
Even so, I expect it to break the builders,
like it did last time, we can debug from there.

Fixes #3269 (again).
Fixes #3396.
Fixes #3397.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5927051
</content>
</entry>
<entry>
<title>go/build: fix import check</title>
<updated>2012-03-27T15:16:10Z</updated>
<author>
<name>Russ Cox</name>
<email>rsc@golang.org</email>
</author>
<published>2012-03-27T15:16:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=671862747ef238f1713170f712e85d1cd6d46685'/>
<id>urn:sha1:671862747ef238f1713170f712e85d1cd6d46685</id>
<content type='text'>
When we find a package in DIR/src/foo, we only let it
be known as foo if there is no other foo in an earlier
GOPATH directory or the GOROOT directory.
The GOROOT check was looking in GOROOT/src/foo
instead of GOROOT/src/pkg/foo, which meant that
the import paths "lib9", "libbio", "libmach", and so
on were unavailable, and the import paths "math",
"errors", and so on were available.  Correct this.

Fixes #3390.

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/5927050
</content>
</entry>
</feed>
