Search Discussions
-
Design doc for adding read-only slices to Go: https://docs.google.com/a/golang.org/document/d/1UKu_do3FRvfeN5Bb1RxLohV-zBOJWTzX0E8ZU1bkqX0/edit#heading=h.2wzvdd6vdi83 Comments welcome. -- --- You ...
Brad Fitzpatrick
May 14, 2013 at 12:02 am
Nov 11, 2013 at 10:14 pm -
Hi, I want to share my rough plan on improving Go GC and memory allocator: https://docs.google.com/document/d/1HCPu3WKyCX3ZRYxmIMKTk0Ik1dePxKW1p02k3uhcft4/edit?usp=sharing I don't have all the ...
Dmitry Vyukov
May 22, 2013 at 4:57 pm
Jun 5, 2013 at 8:00 am -
This is about adding sync.Pool component, see https://code.google.com/p/go/issues/detail?id=4720 for context. There is a number of places in the standard library where we can use it, and it looks ...
Dmitry Vyukov
May 20, 2013 at 4:00 pm
Sep 1, 2013 at 11:51 am -
Good news everyone! I have a working prototype of a preemptive scheduler: https://codereview.appspot.com/9136045 It's not based on the design I described previously. Instead it [ab]uses split stack ...
Dmitry Vyukov
May 12, 2013 at 3:19 pm
Aug 14, 2014 at 2:39 pm -
I've updated my readonly proposal to support readonly values of any type. https://docs.google.com/document/d/1ztU-UPqcl6KD9X4Kv3ix8gW6ZCrVtnxeMcQiA1eHWh0/edit?usp=sharing Ian -- --- You received this ...
Ian Lance Taylor
May 17, 2013 at 9:23 pm
May 28, 2013 at 7:48 pm -
i was at a boston-area go users group meeting earlier this week and there was some confusion about the various websocket packages. what is the relation between ...
Russ Cox
May 30, 2013 at 3:35 pm
Feb 24, 2014 at 4:27 am -
Here's a proposed release timeline for 1.2 and future major Go releases. https://docs.google.com/document/d/106hMEZj58L9nq9N9p7Zll_WKfo-oyZHFyI6MttuZmBU/edit?usp=sharing Your comments welcome. Andrew ...
Andrew Gerrand
May 18, 2013 at 3:55 am
May 22, 2013 at 11:11 am -
golang-dev noise reduction proposal https://docs.google.com/a/golang.org/document/d/1WfK7xQR_YbOCMCepSpKkfC9Rn3GVwpPNqPlA-czauxQ/edit# Comments welcome. -- --- You received this message because you ...
Brad Fitzpatrick
May 14, 2013 at 7:23 pm
Jun 4, 2013 at 11:16 pm -
The failure stack trace looks like this: ok compress/bzip2 0.511s ok compress/flate 2.087s gzip.test 515918: suicide: sys: trap: fault write addr=0xfffffffc pc=0x0001e96a panic: runtime error: index ...
Lucio De Re
May 19, 2013 at 9:43 am
May 23, 2013 at 9:41 am -
Hello <span class="m_body_email_addr" title="11f0ed9f0cc15eea4fab1efeb1553ef5" bradfitz@golang.org</span (cc: <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" ...
Dvyukov
May 6, 2013 at 5:30 pm
May 7, 2013 at 5:37 am -
Reviewers: rsc, Message: Hello rsc (cc: <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span ), I'd like you to review this change to ...
R
May 22, 2013 at 10:45 pm
May 24, 2013 at 10:49 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
May 25, 2013 at 4:04 pm
May 30, 2013 at 1:34 am -
The following snippet from src/pkg/runtime/memmove_386.s TESTL $0x4000000, runtime·cpuid_edx(SB) // check for sse2 JEQ nosse2 is causing the Plan 9 build of Go to fail during tests. The problem is ...
Lucio De Re
May 26, 2013 at 10:27 am
Jun 5, 2013 at 4:24 am -
Ping https://codereview.appspot.com/8248043/ -- --- You received this message because you are subscribed to the Google Groups "golang-dev" group. To unsubscribe from this group and stop receiving ...
Alberto Garcia Hierro
May 31, 2013 at 1:54 pm
May 31, 2013 at 7:02 pm -
Hi, Reflect package directly exposes Slice/StringHeader to user. This means that we can not change it w/o breaking user programs. There were at least 3 ideas about potential changes to slice/string ...
Dmitry Vyukov
May 15, 2013 at 6:42 am
May 16, 2013 at 12:42 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 ...
0xe2 0x9a 0x9b
May 26, 2013 at 4:05 pm
May 26, 2013 at 6:06 pm -
I found url.QueryEscape that does exactly what I wanted. PTAL https://codereview.appspot.com/9671043/ -- --- You received this message because you are subscribed to the Google Groups "golang-dev" ...
Campoy
May 22, 2013 at 11:22 pm
May 23, 2013 at 9:18 pm -
Hi, I am looking into using clang-format for auto-formatting of C code in runtime and commands: http://clang.llvm.org/docs/ClangFormat.html Here is an example of what it currently does with runtime ...
Dmitry Vyukov
May 15, 2013 at 9:38 am
May 17, 2013 at 1:22 pm -
Hi golang-dev, We're gearing up to issue 1.1rc2. In your opinions, what issues must be fixed, and what in-review changes must be submitted, before 1.1rc2 is cut? (Remember, this should be the final ...
Andrew Gerrand
May 6, 2013 at 5:54 pm
May 7, 2013 at 2:23 am -
Hi, Alex and I agreed that first we will try to implement windows then BSDs. FWIW, here is a draft plan to make a series of CLs for avoiding stepping on each other's toes. - net: implement netpoll ...
Mikio Hara
May 18, 2013 at 12:49 pm
Aug 15, 2013 at 9:56 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 ...
Rickarnoldjr
May 24, 2013 at 1:48 am
May 24, 2013 at 2:24 pm -
I've been thinking about how to change the stack implementation for Go routines. I've been poking around with an implementation that keeps stacks contiguous and copies them in order to grow them ...
Keith Randall
May 15, 2013 at 8:27 pm
May 16, 2013 at 6:19 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 ...
Dvyukov
May 15, 2013 at 5:16 pm
May 15, 2013 at 7:51 pm -
There is a blizzard of changes to the runtime: allocator, scheduler, garbage collector, maps, and more. I can't keep up and although a few pieces have been described outside of CLs mostly all that's ...
Rob Pike
May 30, 2013 at 2:32 pm
Jun 5, 2013 at 2:45 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 ...
Dvyukov
May 27, 2013 at 6:51 am
May 28, 2013 at 6:04 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 ...
Dvyukov
May 24, 2013 at 11:20 am
May 24, 2013 at 3:26 pm -
In Go 1.2, we want to turn godoc into a library, instead of a big package main. (Rationale: we have 5+ versions of godoc: normal godoc, app engine godoc (w/ zip files), google-internal godoc, ...
Brad Fitzpatrick
May 20, 2013 at 9:55 pm
May 21, 2013 at 11:46 pm -
I was working on a file yesterday named windows.go on a linux machine. After countless hours of debugging, I realized the file wasn't compiled at all. I asked for help on the freenode IRC channel, to ...
Alex Belanger
May 3, 2013 at 3:08 pm
May 3, 2013 at 7:44 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 ...
0xe2 0x9a 0x9b
May 21, 2013 at 8:24 am
May 23, 2013 at 12:49 am -
Reviewers: pabuhr, Message: Hello <span class="m_body_email_addr" title="ee0f84ae18da9f0167cc685f55f17e80" pabuhr@google.com</span (cc: <span class="m_body_email_addr" ...
Bradfitz
May 14, 2013 at 3:10 pm
May 14, 2013 at 8:33 pm -
Thanks. I'm starting a new thread for discussion of this design. You suggest that a GC will issue a preemption request for all running g's. Is that going to replace the current runtime·gcwaiting ...
Ian Lance Taylor
May 21, 2013 at 11:16 pm
May 29, 2013 at 12:24 am -
10
[golang-dev] code review 9157044: syscall: fix prototype of Fchflags (API change) (issue 9157044)
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" ...Minux Ma
May 3, 2013 at 9:10 am
May 3, 2013 at 5: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 ...
Mark
May 14, 2013 at 12:32 pm
Feb 20, 2014 at 10:38 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
May 31, 2013 at 12:24 pm
May 31, 2013 at 1:04 pm -
PTAL https://codereview.appspot.com/9355044/diff/17001/iana/const.go File iana/const.go (right): https://codereview.appspot.com/9355044/diff/17001/iana/const.go#newcode2 iana/const.go:2: // MACHINE ...
Mikioh Mikioh
May 24, 2013 at 3:24 am
May 30, 2013 at 8:17 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 ...
Cshapiro
May 29, 2013 at 2:49 am
May 30, 2013 at 1:36 am -
These are the diffs for defs_windows_386.h (and defs_windows_amd64.h) files generated with current cgo command and proposed changed one: # diff defs_windows_amd64.h ...
Alex Brainman
May 23, 2013 at 2:42 am
May 23, 2013 at 7:07 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 ...
Max
May 20, 2013 at 1:55 pm
May 20, 2013 at 3:47 pm -
This function breaks the usual Go convention of putting the destination as the first argument (copy, io.Copy, strconv.AppendFloat, etc). It also breaks the convention set by strconv of putting Append ...
Rsc
May 17, 2013 at 5:59 pm
May 17, 2013 at 8:11 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
May 16, 2013 at 8:51 pm
May 17, 2013 at 7:53 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" ...
Remyoudompheng
May 4, 2013 at 11:12 am
May 15, 2013 at 3:22 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 ...
Dvyukov
May 12, 2013 at 11:11 am
May 13, 2013 at 8:56 am -
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" ...
Minux Ma
May 6, 2013 at 11:49 pm
May 7, 2013 at 6:02 am -
I'm working on hooking up the existing spdy package in go.net to net/http. After talking briefly with Brad I'm about ready to send a small "hello world" CL for go.net/spdy. If this goes well I plan ...
Keith Rarick
May 11, 2013 at 11:07 pm
Dec 19, 2013 at 3:17 am -
R=rsc (assigned by r) https://codereview.appspot.com/9129044/ -- --- You received this message because you are subscribed to the Google Groups "golang-dev" group. To unsubscribe from this group and ...
Gobot
May 17, 2013 at 9:14 pm
Aug 9, 2013 at 4:46 pm -
https://codereview.appspot.com/9716045/diff/18006/src/pkg/runtime/malloc.goc File src/pkg/runtime/malloc.goc (right) ...
0xe2 0x9a 0x9b
May 31, 2013 at 5:26 am
May 31, 2013 at 7:33 pm -
Reviewers: golang-dev1, Message: Hello <span class="m_body_email_addr" title="c3ecb5e27faf47760cdc327c77b2bcea" golang-dev@googlegroups.com</span (cc: carl shapiro <<span class="m_body_email_addr" ...
Lucio Dere
May 29, 2013 at 9:03 am
May 30, 2013 at 5:02 am -
Every now and then - my impression is about one time out of five or more - the Go build on my Plan 9/386 server instance (ESX 3.5i on an old Intel STL rack-mount server: 2xi486 1MHz, 3MiB) reports ...
Lucio De Re
May 28, 2013 at 6:23 pm
May 29, 2013 at 12:26 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 ...
Dvyukov
May 28, 2013 at 4:32 pm
May 28, 2013 at 9:25 pm -
8
[golang-dev] code review 9731049: all: do not run AllocsPerRun tests in short mode (issue 9731049)
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 ...Dvyukov
May 28, 2013 at 5:19 pm
May 28, 2013 at 9:17 pm
Group Overview
group | golang-dev |
categories | go |
discussions | 786 |
posts | 2,893 |
users | 135 |
website | golang.org |
135 users for May 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)