Search Discussions
-
Regards. I'm trying to implement a WalkFollowingSymlinks function for the path/filepath package that walks a filesystem tree, following symlinks. The main problem is detecting loops, however this is ...
Manlio Perillo
Jan 14, 2015 at 3:58 pm
Jan 20, 2015 at 7:56 pm -
It's time to start having parts of the Go toolchain written in Go, which means we need to figure out how the bootstrap will work. I propose that we require having Go 1.4 available in order to build ...
Russ Cox
Jan 7, 2015 at 4:06 pm
Jan 10, 2015 at 12:08 am -
Hi gophers, There are at least three issues about the accuracy of our math package: #8909 about Hypot, #9545 about Asinh and #9536 about Log. I've made some investigation into the last issue about ...
Minux
Jan 26, 2015 at 2:37 am
Jan 28, 2015 at 7:22 pm -
The builders are running with the Go 1.4 requirement and mostly fine. A few are lagging - FreeBSD, Dragonfly, and Plan 9 don't have Go 1.4 on the builders yet, but I'm not going to let them hold us ...
Russ Cox
Jan 20, 2015 at 2:39 am
Jan 28, 2015 at 7:21 pm -
Issues 9344 and 9369 are about the fact that for Go 1.4 we changed the behaviour of the -a flag to go build/install/etc. Previously the -a flag meant that a package would be rebuilt (reinstalled, ...
Ian Lance Taylor
Jan 7, 2015 at 1:52 am
Jan 7, 2015 at 10:40 pm -
Hi, As I start to seriously look at turning Go code into a shared library, I naturally ran into the fact that the code generated by the current toolchain (at least for amd64) is not position ...
Michael Hudson-Doyle
Jan 22, 2015 at 3:25 am
Jan 26, 2015 at 2:45 am -
That's pretty vague. The hello world binary actually got smaller in Go 1.3, and a little bigger in Go 1.4, but Go 1.4's binaries are still smaller than Go 1.2's binaries. In any event, I don't expect ...
Russ Cox
Jan 9, 2015 at 8:01 pm
Jan 12, 2015 at 8:59 am -
Hi, I propose creating a new internal package to provide often used low level string conversion methods within the go std lib. Within the go code base many different versions of common string ...
Martisch
Jan 5, 2015 at 9:29 pm
Jan 7, 2015 at 4:58 pm -
I recently posted a reasonably substantial CL (are they CLs or PRs now?) that makes some changes to the XML encoding behaviour. https://go-review.googlesource.com/#/c/2660/ In particular, it makes ...
Roger peppe
Jan 13, 2015 at 8:34 am
Jan 21, 2015 at 7:45 am -
I am a Java Developer . When I handle the Time struct in Go , I feel very uncomfortable. I read the format from http://golang.org/src/time/format.go . One case like : const DATETIME_FORMAT = ...
Zuxiong lin
Jan 20, 2015 at 12:27 am
Jan 21, 2015 at 12:27 am -
Change bc2601a1df6e broke the nacl-arm-cheney build: http://build.golang.org/log/009d560a3875c1e62eba04eaa091ab8352a00200 runtime: allocate wbshadow at high address sysReserve doesn't actually ...
Builder
Jan 7, 2015 at 1:24 am
Jan 9, 2015 at 5:25 pm -
I've proposed a standard-library CL that I hope might be worth discussing: https://go-review.googlesource.com/#/c/2998/ This CL proposes a function that I find myself needing constantly in Go, to ...
Bryan Ford
Jan 17, 2015 at 5:49 pm
Jan 20, 2015 at 2:08 pm -
hi there, I am trying to revive https://codereview.appspot.com/101330055 and adapt it to go 1.4. AFAIU, there are 2 issues: - one needs a valid rtype.alg *typeAlg to assign to the newly created rtype ...
Sebastien Binet
Jan 23, 2015 at 10:20 am
Jan 26, 2015 at 5:10 pm -
Suppose /foo is an existing file and /bar is an existing directory, and a WebDAV client issues: COPY /foo /bar (where the /foo source is the Request URI, the /bar destination is the Destination HTTP ...
Nigel Tao
Jan 13, 2015 at 12:31 am
Jan 13, 2015 at 8:45 pm -
Hello, I'm trying to bootstrap golang either 1.4 or master and I'm hitting weird test suite failure and I'm not sure how to proceed. ##### ../misc/cgo/test # _/builddir/build/BUILD/go/misc/cgo/test ...
Dimitri Ledkov
Jan 13, 2015 at 1:28 am
Jan 13, 2015 at 2:23 am -
I made some progress on the non-Linux VM-based builders today ( https://golang.org/issue/9492), which is the precursor to trybots and on-demand dev instances for debugging. The coordinator (status at ...
Brad Fitzpatrick
Jan 3, 2015 at 6:07 am
Jan 5, 2015 at 11:52 pm -
Update on build.golang.org, if curious. Most builders are now running in the new style, with the build coordinator binary (status <http://107.178.219.46/ ) launching a new VM per commit, with the ...
Brad Fitzpatrick
Jan 28, 2015 at 12:40 am
Jan 28, 2015 at 7:33 pm -
Hello, Due to some country-specific problems that prevents the majority of Chinese gophers to access all of golang.org services (and also other Google services, for example, App Engine), I propose to ...
Minux
Jan 20, 2015 at 6:25 am
Jan 26, 2015 at 1:33 am -
From the Wiki: $ go get -u golang.org/x/review/git-codereview - package golang.org/x/review/git-codereview: mkdir /usr/lib/go/src/pkg/golang.org: permission denied I'm not going to install the script ...
Dominik Vogt
Jan 13, 2015 at 9:52 am
Jan 13, 2015 at 12:18 pm -
Hi, I'd like to know if it would be possible to use the playground service in a project I'll be working this weekend during the "Gopher Gala" Thanks -- You received this message because you are ...
Julien Castelain
Jan 22, 2015 at 9:00 pm
Jan 24, 2015 at 10:13 pm -
Hi, I'd like to propose an API for pulling standalone connections out of a *sql.DB. There are many uses cases for this, such as: 1) Holding session-level locks while executing certain queries without ...
Marko Tiikkaja
Jan 11, 2015 at 11:10 pm
Jan 21, 2015 at 7:59 am -
Hi there Any reason the reflect docs don't describe all the published methods of reflect.Type? The interface definition here <http://golang.org/pkg/reflect/#Type lists a few methods (e.g. In(int) and ...
Graham MacDonald
Jan 17, 2015 at 7:09 am
Jan 17, 2015 at 9:17 am -
There is active development on the git codereview plugin, and you don't get it automatically each time you sync the main repo (unlike the old hg plugin). We'll send reminder emails when there is an ...
Russ Cox
Jan 15, 2015 at 12:48 am
Jan 15, 2015 at 2:41 am -
See http://blog.golang.org/errors-are-values, from whence this example: _, err = fd.Write(p0[a:b]) if err != nil { return err } _, err = fd.Write(p1[c:d]) if err != nil { return err } _, err = ...
David Leon Gil
Jan 24, 2015 at 8:19 pm
Jan 25, 2015 at 10:02 am -
I just submitted a merge of dev.cc into master, which makes Go 1.4 a requirement for building Go. If this breaks your build, you need to get Go 1.4 and put it in $HOME/go1.4 (or, if you want to use ...
Russ Cox
Jan 17, 2015 at 12:05 am
Jan 17, 2015 at 6:21 pm -
You can now see which builds are currently building at build.golang.org. See screenshot. adg promised he'd class it up a bit. Direct all paint colors there. I have a coming change to make those ...
Brad Fitzpatrick
Jan 9, 2015 at 12:27 am
Jan 9, 2015 at 4:47 am -
I've just found what appears to be a Go runtime bug in some code that looks similar to the following: type T struct { x [32]byte } func (t *T) foo() []byte { x := t.x return x[:] } I'm seeing an ...
Roger peppe
Jan 8, 2015 at 6:17 pm
Jan 8, 2015 at 9:41 pm -
Hello, The About page at play.golang.org says, I am contacting you on behalf of Richard Musiol to ask for permission for us to use the service. We'd like to use it to add the ability share and load ...
Dmitri Shuralyov
Jan 4, 2015 at 6:58 pm
Jan 6, 2015 at 2:01 am -
Looking at https://go-review.googlesource.com/#/c/3520/1 I see a "Related Changes" column. How do I do that? Is it automagic? Thanks, -- Aram Hăvărneanu -- You received this message because you are ...
Aram Hăvărneanu
Jan 29, 2015 at 7:25 pm
Jan 29, 2015 at 7:49 pm -
Could this patch be backported to 1.4, please? It is necessary to build the go tool on platforms without a plan 9 character. Since 1.5 does not build with an old version of the library, backporting ...
Dominik Vogt
Jan 13, 2015 at 7:25 am
Jan 13, 2015 at 8:05 am -
I just fixed the "playground" and "net" projects. They were the only two with merge policies instead of cherry-pick. I see we have at least one merge commit in the net repo ...
Brad Fitzpatrick
Jan 7, 2015 at 7:08 pm
Jan 8, 2015 at 1:31 am -
Hi all, I'm currently reading and trying to learn the linker (cmd/ld, cmd/6l, etc) code. But I'm wondering if this is a good use of my time, because I don't entirely understand the plan for this ...
Michael Hudson-Doyle
Jan 28, 2015 at 4:31 am
Jan 28, 2015 at 9:23 pm -
I noticed when building master that these new functions were exposed by the runtime package: +pkg runtime, func GCendtimes() I assume it was unintentional -- but if not: they seem oddly named ...
Stephen Gutekanst
Jan 27, 2015 at 6:00 am
Jan 27, 2015 at 7:02 am -
Hi all, Do we have an established convention already for how to add attributes to a struct field tag that contains a key/value of some kind? Something along the lines of "width" in the following ...
Gustavo Niemeyer
Jan 23, 2015 at 1:06 pm
Jan 24, 2015 at 1:57 am -
Good day, everyone. Can function closure be allocated on a stack? I worried about exactly one case: when function closure is passed to `systemstack` assembler function. It looks to be a right place ...
Юрий Соколов
Jan 19, 2015 at 5:57 pm
Jan 19, 2015 at 7:53 pm -
In revision f956740163ad4b46237cea83357b962cada1c2df the function setKeepAlivePeriod in the net package was changed on Solaris to use TCP_KEEPIDLE and TCP_KEEPINTVL. However, I am told that on ...
Ian Lance Taylor
Jan 16, 2015 at 4:01 pm
Jan 17, 2015 at 12:34 am -
I saw that PROPFIND and PROPPATCH are open TODOs in the current net/webdav code. I want to use the net/webdav package but need a working property system and started hacking my own. However, I neither ...
Robert Stepanek
Jan 13, 2015 at 8:23 pm
Jan 14, 2015 at 4:13 pm -
I just became aware of the ssh Channel interface, due to https://go-review.googlesource.com/#/c/2673/2/ssh/channel.go which expands it further. I argue that it's way too large already and not the ...
Brad Fitzpatrick
Jan 13, 2015 at 5:27 pm
Jan 14, 2015 at 7:30 am -
I'm pretty new to Go and spend a lot of time reading the excellent docs and standard library code. I occasionally find minor typos or inconsistencies in the docs or code comments. What is the ...
Kalafut
Jan 13, 2015 at 10:31 pm
Jan 13, 2015 at 10:59 pm -
Did anything happen after this? I'm in need of a way to auth my AppEngine Go app to authenticate with BigQuery. This is the closest I've found to what would let me use an AppEngine Servuce Account ...
Shaan7in
Jan 10, 2015 at 3:35 pm
Jan 13, 2015 at 4:33 am -
when I try to run the std tests with go test -v std -timeout=120s I get some failure along the way, but there is no message. the last lines echoed to the screen are: PASS ok unicode/utf8 0.009s ? ...
Tieson Molly
Jan 7, 2015 at 2:34 pm
Jan 7, 2015 at 4:47 pm -
Change 17577e48c907 broke the linux-386-clang build: http://build.golang.org/log/88539e709d54911a216639e91c8ab17d4d6e9c80 runtime: use SETEQ instead of JZ for cas Change-Id ...
Builder
Jan 2, 2015 at 7:09 pm
Jan 2, 2015 at 7:18 pm -
This old question has been resurrected on StackOverflow: http://stackoverflow.com/questions/6002619/unmarshal-an-iso-8859-1-xml-input-in-go ...
Andy Balholm
Jan 28, 2015 at 12:38 am
Jan 28, 2015 at 3:23 am -
Hi, I am working on quiz app for Go at http://gopherquiz.com and I feel the playground would be an ideal tool to execute the code snippets. I would like to know what the requirements are to be ...
Abiola Ibrahim
Jan 26, 2015 at 3:32 am
Jan 26, 2015 at 5:26 am -
Hi, I was hoping to make an interactive learning game inspired by http://alexnisnevich.github.io/untrusted/, but using Go instead of JS. I was reading your blog post about Inside the Go Playground ...
Andy Brewer
Jan 21, 2015 at 7:02 pm
Jan 22, 2015 at 12:55 am -
Good day, I've noticed that channel returned by ClientNotify() is not closed, but sent a value: https://github.com/golang/go/blob/4b96409aacfb569ac2564240d8aadd668b7c25fa/src/net/http/server.go#L189 ...
Юрий Соколов
Jan 21, 2015 at 6:52 pm
Jan 21, 2015 at 7:04 pm -
Hi, Can I get a unique user agent to use with the go playground? I am working on a tutorial in Go to help newcomers, and I would like to add some interactive coding sections that use the Go ...
Jon Calhoun
Jan 19, 2015 at 9:09 pm
Jan 19, 2015 at 9:17 pm -
I consistently get this crash at the same place at tip: $ git rev-parse HEAD 0e84088715a2242fbc99b813ac25ac60b21d997a $ git diff $ GOOS=openbsd ./make.bash ##### Building C bootstrap tool. cmd/dist ...
Brad Fitzpatrick
Jan 14, 2015 at 8:54 pm
Jan 14, 2015 at 8:58 pm -
After preparing a branch for review as described in the Wiki, running $ git codereview mail Results in the following error message: -- snip -- fatal: remote error: A Contributor Agreement must be ...
Dominik Vogt
Jan 13, 2015 at 11:53 am
Jan 13, 2015 at 1:39 pm -
Hi Just wanted to check if this is really a bug before filing one: http://play.golang.org/p/pjrPYiAzBB I am running Ubuntu on my Chromebook using crouton. When I killed some additional programs (like ...
Rajanikanth Jammalamadaka
Jan 13, 2015 at 5:36 am
Jan 13, 2015 at 5:38 am
Group Overview
group | golang-dev |
categories | go |
discussions | 93 |
posts | 445 |
users | 88 |
website | golang.org |
88 users for January 2015
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)