Re: [go-nuts] How can I identify the default value of the -p build flag?

2018-11-02 Thread Mark Rushakoff
Thanks. That confirms that Go thinks there are 36 CPUs available in that environment. I'm still a bit surprised that there's no way to invoke the go executable to get the value of runtime.NumCPU. A quick grep through src/cmd looks like it isn't directly exposed anywhere. I might file an issue

Re: [go-nuts] How can I identify the default value of the -p build flag?

2018-11-02 Thread Ian Lance Taylor
On Fri, Nov 2, 2018 at 2:29 PM, wrote: > > This is somewhat an XY problem, so let me preface with the X: > > We infrequently see `/usr/local/go/pkg/tool/linux_amd64/link: signal: > killed` when running `go test` for our project on CircleCI, running Go > 1.11.1. > > As far as I can tell, that

[go-nuts] Re: Go 1.11.2 and Go 1.10.5 are released

2018-11-02 Thread Nathan Kerr
I updated my release related resources: - Go Release Timeline - When Should You Upgrade Go? On Friday, November 2, 2018 at 3:06:58 PM UTC-7, Andrew Bonventre wrote: > > Hello

[go-nuts] Go 1.11.2 and Go 1.10.5 are released

2018-11-02 Thread Andrew Bonventre
Hello gophers, We have just released Go versions 1.11.2 and 1.10.5, minor point releases. View the release notes for more information: https://golang.org/doc/devel/release.html#go1.11.minor You can download binary and source distributions from the Go web site: https://golang.org/dl/ To

[go-nuts] How can I identify the default value of the -p build flag?

2018-11-02 Thread mark
This is somewhat an XY problem, so let me preface with the X: We infrequently see `/usr/local/go/pkg/tool/linux_amd64/link: signal: killed` when running `go test` for our project on CircleCI, running Go 1.11.1. As far as I can tell, that killed signal is due to OOMing. The comment at

Re: [go-nuts] Re: Large (binary or text) File transfers over rpc

2018-11-02 Thread Tom Mitchell
Moving files is a solved, non trivial problem Have you looked at tools like scp (ssh), rsync, kermit, ftp, sftp, tftp and network filesystems (nfs and samba)? Even git and http. Error recover, host name lookup, compression, restart, safe abort, transport encryption, authentication,

[go-nuts] Can any one build successfully shared library linked against shared std?

2018-11-02 Thread Sokolov Yura
I'm trying to build simplest library in `shared` mode linked against shared std. Ubuntu 18.04 , go 1.11.1 installed with godeps. $ sudo rm /usr/local/go/pkg/linux_amd64_dynlink/ -rf $ sudo rm ~/.cache/go-build/ -rf $ sudo go install -buildmode=shared std $ mkdir ~/go/src/mylibrary $ cat >

[go-nuts] Re: Creating “.msg” file for Outlook in Golang

2018-11-02 Thread Tamás Gulácsi
2018. november 2., péntek 6:00:33 UTC+1 időpontban Navindra Kumar a következőt írta: > > I want to create a file in Microsoft Outlook .msg format on my local > machine by using Golang so that when a user clicks on the .msg file it > could open in MS Outlook. Please help if anybody has done it.

[go-nuts] Re: Large (binary or text) File transfers over rpc

2018-11-02 Thread Tamás Gulácsi
2018. november 2., péntek 6:21:47 UTC+1 időpontban Anirudh Vyas a következőt írta: > > Hello there - > > I am looking for example/help for using rpc to do file downloads - I am > not sure if this is possible, or recommended or if there is a > better/cleaner way. I like the robust nature of