Search Discussions
-
I started work on cleaning up the runtime symbol table so that it is less cumbersome and also more easily extensible to help with things like garbage collection metadata. Design at ...
Russ Cox
Jul 10, 2013 at 5:46 pm
Jul 18, 2013 at 7:20 pm -
This thread is about making preemption of goroutines work. As background, Dmitriy has written and submitted some CLs that can preeempt running goroutines, such as for garbage collection. The ...
Russ Cox
Jul 18, 2013 at 2:59 pm
Aug 3, 2013 at 6:31 am -
Hi, Here is a detailed proposal for Go Performance Dashboard (performance bots). This is more of a concrete starting point than a final destination. Feedback (and volunteers) are welcome ...
Dmitry Vyukov
Jul 29, 2013 at 3:09 pm
Oct 30, 2013 at 4:40 am -
Please collect and post here the list of all C globals and mark the ones that you add as roots. I guess you already have such list. We need to double check the ones that are not roots with this ...
Dvyukov
Jul 22, 2013 at 10:22 am
Jul 22, 2013 at 9:53 pm -
Reviewers: golang-dev1, Message: This is a new implementation that uses a channel, developed in collaboration with Dmitry. Benchmarks: procs waiters old new delta 1 1 402 250 -37.81% 1 2 665 489 ...
Sougou
Jul 17, 2013 at 4:09 am
Jul 17, 2013 at 11:07 pm -
It looks like the change to yield causes breakage when running under wine (see https://code.google.com/p/go/issues/detail?id=5831). Wine does the windows emulation in user space, so some of the ...
Hanwen
Jul 3, 2013 at 8:14 am
Jul 3, 2013 at 2:40 pm -
In the gc runtime, when m is a map, and k is a value of the map's key type, and there is already a value in the map that is equal to k, then executing the statement m[k] = v will replace the value ...
Ian Lance Taylor
Jul 14, 2013 at 10:09 pm
Jul 16, 2013 at 9:36 am -
In api/go1.txt, we guarantee: pkg crypto, const MD4 Hash pkg crypto, const MD5 Hash pkg crypto, const MD5SHA1 Hash pkg crypto, const RIPEMD160 Hash pkg crypto, const SHA1 Hash pkg crypto, const ...
Brad Fitzpatrick
Jul 11, 2013 at 12:47 am
Nov 1, 2013 at 8:34 am -
Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , dave@cheney.net (cc: <span class="m_body_email_addr" ...
Mikioh Mikioh
Jul 30, 2013 at 1:00 pm
Aug 3, 2013 at 4:35 am -
There are lots of changes related to performance (directly or indirectly) recently -- GC, hashmaps, scheduler, malloc, codegen. And lots are coming. We can't get too far without a performance bots ...
Dmitry Vyukov
Jul 15, 2013 at 2:22 pm
Jul 22, 2013 at 11:10 am -
golang.org/s/go12encoding proposes a new mostly-interfaces package named encoding. Values implementing TextMarshaler or TextUnmarshaler would be recognized by the Marshal or Unmarshal of any ...
Russ Cox
Jul 16, 2013 at 6:59 pm
Jul 17, 2013 at 6:08 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Rsc
Jul 18, 2013 at 5:18 pm
Jul 18, 2013 at 8:57 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span (cc: <span class="m_body_email_addr" ...
Presotto
Jul 10, 2013 at 10:57 pm
Jul 15, 2013 at 10:41 pm -
Very nicely done, very clear, thank you. Cc'ing remy and minux who more about the assembler. https://codereview.appspot.com/11648043/diff/6001/src/pkg/crypto/md5/md5block_arm.s File ...
Dave
Jul 22, 2013 at 4:19 am
Jul 23, 2013 at 10:23 pm -
How did this manifest itself? Can you write a test that failed before but passes now? https://codereview.appspot.com/11647043/ -- --- You received this message because you are subscribed to the ...
Bradfitz
Jul 22, 2013 at 12:40 am
Jul 22, 2013 at 11:27 pm -
golang.org/s/go12xml is a proposal to add Marshaler and Unmarshaler interfaces to encoding/xml. The interfaces are a bit more involved than in encoding/json or encoding/gob, but that seems to be ...
Russ Cox
Jul 16, 2013 at 6:57 pm
Aug 4, 2013 at 6:34 pm -
Hi - I have been tracking what's going on in go.tools/types and go.tools/ssa and something that concerns me is the quick loss of the great position information that is available generally in go/ast ...
Rocky Bernstein
Jul 21, 2013 at 3:57 am
Jul 31, 2013 at 2:12 am -
12
[golang-dev] Re: code review 12022043: dist: support building from a git repository (issue 12022043)
Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span (cc: <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" ...Artagnon
Jul 29, 2013 at 2:33 pm
Jul 30, 2013 at 7:54 am -
Reviewers: r, Message: Hello r (cc: <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span ), I'd like you to review this change to ...
Dsymonds
Jul 24, 2013 at 4:51 am
Jul 24, 2013 at 10:21 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Khr
Jul 16, 2013 at 9:43 pm
Aug 19, 2013 at 7:20 pm -
golang.org/s/go12nil is a proposal to address golang.org/issue/4238. In short: - if x is a nil pointer, then evaluating &*x always panics. - if x is a nil struct pointer, then evaluating &x.Field ...
Russ Cox
Jul 12, 2013 at 2:46 pm
Aug 6, 2013 at 4:23 pm -
Hello <span class="m_body_email_addr" title="19af6603d5b10fa883500305bdfd8b4c" dsymonds@golang.org</span (cc: <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" ...
Dan Kortschak
Jul 31, 2013 at 4:57 am
Jul 31, 2013 at 6:11 am -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Alex Brainman
Jul 29, 2013 at 4:27 am
Jul 29, 2013 at 8:48 pm -
Reviewers: iant, Message: Hello <span class="m_body_email_addr" title="10c9912ad968d022471f8319269ecd17" iant@golang.org</span (cc: <span class="m_body_email_addr" ...
Go Peter 90
Jul 25, 2013 at 1:09 am
Jul 25, 2013 at 1:56 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Adg
Jul 22, 2013 at 11:46 pm
Jul 24, 2013 at 11:07 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Bradfitz
Jul 22, 2013 at 8:59 pm
Jul 23, 2013 at 5:41 am -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Iant
Jul 19, 2013 at 8:25 pm
Jul 20, 2013 at 2:32 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Dave
Jul 19, 2013 at 12:40 am
Jul 19, 2013 at 5:03 am -
https://codereview.appspot.com/9649044/diff/24001/go/types/typemap/typemap.go File go/types/typemap/typemap.go (right) ...
Adonovan
Jul 10, 2013 at 2:28 am
Jul 10, 2013 at 9:57 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Pieter
Jul 29, 2013 at 11:54 pm
Jul 31, 2013 at 12:30 am -
http.NewRequest coerces its body Reader to a ReadCloser if it can, and Request.Body is (sometimes?) closed after a request has been made. This is undocumented (we just had a bug because of it). I ...
Roger peppe
Jul 15, 2013 at 9:30 am
Jul 17, 2013 at 2:36 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Adg
Jul 16, 2013 at 11:48 pm
Jul 17, 2013 at 1:05 am -
Two compile errors on arm. Sorry I cannot review further. https://codereview.appspot.com/11085043/diff/23001/src/pkg/runtime/traceback_arm.c File src/pkg/runtime/traceback_arm.c (right) ...
Dave
Jul 15, 2013 at 11:44 pm
Jul 16, 2013 at 1:42 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Dsymonds
Jul 4, 2013 at 6:17 am
Jul 11, 2013 at 3:22 am -
Reviewers: rsc, Message: Hello <span class="m_body_email_addr" title="0df663e159099d666c1302f7f355eae8" rsc@golang.org</span (cc: <span class="m_body_email_addr" ...
Dave
Jul 9, 2013 at 1:47 am
Jul 10, 2013 at 11:20 pm -
Many users are getting bits confused in go's sort package. I'm thinking it's not easy to use, not portable, not reasonable to use easily. I want SortFunc that getting sort easily. How do you think? ...
Mattn
Jul 2, 2013 at 1:21 am
Jul 9, 2013 at 4:57 am -
https://codereview.appspot.com/10977043/diff/6001/src/pkg/image/draw/quantize.go File src/pkg/image/draw/quantize.go (right) ...
R
Jul 8, 2013 at 1:51 am
Sep 2, 2014 at 12:14 am -
I was just running tests for changes to cd0bae7395e8 (lazily as root - yes, yes, yes, I know) and found that the tests were clobbering /dev/null (recreating it as a d). File an issue? -- --- You ...
Dan Kortschak
Jul 31, 2013 at 5:50 am
Jul 31, 2013 at 6:42 am -
Reviewers: golang-dev1, agl, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , agl@chromium.org (cc: <span ...
Remyoudompheng
Jul 25, 2013 at 9:50 pm
Jul 30, 2013 at 6:33 am -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Cmang
Jul 29, 2013 at 8:44 pm
Jul 30, 2013 at 4:29 am -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Alex
Jul 28, 2013 at 8:16 am
Jul 29, 2013 at 3:07 am -
8
[golang-dev] code review 11932044: net: make UnixAddr implement sockaddr interface (issue 11932044)
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span (cc: <span class="m_body_email_addr" ...Mikioh Mikioh
Jul 28, 2013 at 4:05 am
Jul 28, 2013 at 7:15 am -
Reviewers: adg, adg1, gocampoy, dsymonds, r, nigeltao, Sameer Ajmani, Sameer at Google, Message: Hello <span class="m_body_email_addr" title="9372cecb2e4335ef6f1172cda806b50b" adg@golang.org</span , ...
Bradfitz
Jul 25, 2013 at 8:25 pm
Jul 25, 2013 at 10:02 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Adg
Jul 25, 2013 at 12:41 am
Jul 25, 2013 at 2:03 am -
Reviewers: dvyukov, Message: Hello dvyukov (cc: <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span ), I'd like you to review this change to ...
Rsc
Jul 24, 2013 at 3:10 am
Jul 24, 2013 at 1:02 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Adg
Jul 23, 2013 at 3:51 am
Jul 23, 2013 at 8:50 am -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , I'd like you to review this change to ...
Bradfitz
Jul 17, 2013 at 12:59 am
Jul 17, 2013 at 8:01 am -
Very close, please revert that one change. https://codereview.appspot.com/11219045/diff/17001/present/dir.go File present/dir.go (right) ...
Dave
Jul 14, 2013 at 9:34 am
Jul 14, 2013 at 11:29 pm -
8
[golang-dev] code review 10869046: cmd/go: git checkout the correct default branch. (issue 10869046)
Reviewers: adg, Message: Hello adg (cc: <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span , <span class="m_body_email_addr" ...Dsymonds
Jul 3, 2013 at 1:25 am
Jul 11, 2013 at 8:19 pm -
Reviewers: adonovan, Message: Hello adonovan (cc: <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span ), I'd like you to review this change to ...
Gri
Jul 8, 2013 at 6:45 pm
Jul 8, 2013 at 8:51 pm
Group Overview
group | golang-dev |
categories | go |
discussions | 1,052 |
posts | 3,287 |
users | 128 |
website | golang.org |
128 users for July 2013
Archives
- June 2016 (161)
- May 2016 (149)
- April 2016 (310)
- March 2016 (570)
- February 2016 (331)
- January 2016 (345)
- December 2015 (143)
- November 2015 (299)
- October 2015 (352)
- September 2015 (328)
- August 2015 (339)
- July 2015 (249)
- June 2015 (346)
- May 2015 (485)
- April 2015 (415)
- March 2015 (675)
- February 2015 (383)
- January 2015 (445)
- December 2014 (704)
- November 2014 (363)
- October 2014 (387)
- September 2014 (499)
- August 2014 (711)
- July 2014 (542)
- June 2014 (109)
- May 2014 (181)
- April 2014 (337)
- March 2014 (512)
- February 2014 (554)
- January 2014 (554)
- December 2013 (2,655)
- November 2013 (1,704)
- October 2013 (2,235)
- September 2013 (2,693)
- August 2013 (4,409)
- July 2013 (3,287)
- June 2013 (3,126)
- May 2013 (2,893)
- April 2013 (2,209)
- March 2013 (4,142)
- February 2013 (3,737)
- January 2013 (2,959)
- December 2012 (2,238)
- November 2012 (2,578)
- October 2012 (2,535)
- September 2012 (2,763)
- August 2012 (99)