[go-nuts] Re: What's the status of the new Go brand?

2018-08-25 Thread Steve Roth
Hmm, I wouldn't say "nothing" has changed. The golang.org site has gotten noticeably slower, particularly the package documentation. I have no idea whether that's related to this migration but it's definitely unfortunate. Steve On Saturday, August 25, 2018 at 8:30:17 AM UTC-7, Carla Pfaff

Re: [go-nuts] Problems with cache

2018-08-25 Thread Ian Lance Taylor
On Sat, Aug 25, 2018 at 5:16 PM, Peter Kleiweg wrote: > Op zaterdag 25 augustus 2018 18:54:32 UTC+2 schreef Ian Lance Taylor: >> >> On Sat, Aug 25, 2018 at 7:58 AM, Peter Kleiweg wrote: >> > Op zaterdag 25 augustus 2018 16:40:55 UTC+2 schreef Jakob Borg: >> >> >> >> On 25 Aug 2018, at 15:21,

[go-nuts] Working with import "google.golang.org/api/admin/directory/v1"

2018-08-25 Thread John More
I am using the "google.golang.org/api/admin/directory/v1" to access a G Suite account and everything seems to work EXCEPT: The import defines a User structure that includes the following element among many others Suspended bool `json:"suspended,omitempty"` When

Re: [go-nuts] Problems with cache

2018-08-25 Thread Peter Kleiweg
Op zaterdag 25 augustus 2018 19:06:27 UTC+2 schreef Sebastien Binet: > > > > On Sat, Aug 25, 2018 at 6:54 PM Ian Lance Taylor > wrote: > >> On Sat, Aug 25, 2018 at 7:58 AM, Peter Kleiweg > > wrote: >> > Op zaterdag 25 augustus 2018 16:40:55 UTC+2 schreef Jakob Borg: >> >> >> >> On 25 Aug 2018, at

Re: [go-nuts] Problems with cache

2018-08-25 Thread Peter Kleiweg
Op zaterdag 25 augustus 2018 18:54:32 UTC+2 schreef Ian Lance Taylor: > > On Sat, Aug 25, 2018 at 7:58 AM, Peter Kleiweg > wrote: > > Op zaterdag 25 augustus 2018 16:40:55 UTC+2 schreef Jakob Borg: > >> > >> On 25 Aug 2018, at 15:21, Peter Kleiweg wrote: > >> > >> > >> disabling the cache

Re: [go-nuts] IDE/tools that support the new Go module feature in 1.11?

2018-08-25 Thread Alex Rice
On Saturday, August 25, 2018 at 2:19:30 PM UTC-6, Alex Rice wrote: > https://blog.jetbrains.com/go/2018/08/24/goland-2018-2-2-is-here/ > > Curious if anyone else is having success. > > Oh, I see- in GoLand the New Project dialog has 3 choices: Go, Go Module (vgo), or Dep. I was trying to use

Re: [go-nuts] IDE/tools that support the new Go module feature in 1.11?

2018-08-25 Thread Alex Rice
On Saturday, August 25, 2018 at 3:45:13 AM UTC-6, Aldrin Leal wrote: > > Goland has been supporting it for a while: > > https://blog.jetbrains.com/go/2018/05/18/vgo-integration-support/ > > > Isn't "vgo" the older (pre- go 1.11) variant? I was just trying out GoLand with Go 1.11 and ran into

Re: [go-nuts] internal compilation error while compiling gccgo from source solaris 10

2018-08-25 Thread Ian Lance Taylor
On Fri, Aug 24, 2018 at 11:48 PM, Amandeep Gautam wrote: > Hi Ian, >I compiled GMP, MPFR and MPC from source. Next, I configured gcc with > modified options: > > $srcdir/configure \ > --prefix=$prefix \ > --enable-languages=go \ > --with-as=/opt/csw/gnu/as --with-gnu-as \ >

Re: [go-nuts] Problems with cache

2018-08-25 Thread Sebastien Binet
On Sat, Aug 25, 2018 at 6:54 PM Ian Lance Taylor wrote: > On Sat, Aug 25, 2018 at 7:58 AM, Peter Kleiweg wrote: > > Op zaterdag 25 augustus 2018 16:40:55 UTC+2 schreef Jakob Borg: > >> > >> On 25 Aug 2018, at 15:21, Peter Kleiweg wrote: > >> > >> > >> disabling the cache won't be an option in

Re: [go-nuts] Problems with cache

2018-08-25 Thread Ian Lance Taylor
On Sat, Aug 25, 2018 at 7:58 AM, Peter Kleiweg wrote: > Op zaterdag 25 augustus 2018 16:40:55 UTC+2 schreef Jakob Borg: >> >> On 25 Aug 2018, at 15:21, Peter Kleiweg wrote: >> >> >> disabling the cache won't be an option in Go 1.12. What to do then? >> >> >> You don’t say what your issues with

[go-nuts] What's the status of the new Go brand?

2018-08-25 Thread haskell_mustard via golang-nuts
The announcement in April said: What’s happening next > > The website will be getting a refresh based on the new design. Since we > are making significant changes, we are also taking this opportunity to > update our website infrastructure to better serve our global community with >

Re: [go-nuts] Problems with cache

2018-08-25 Thread Peter Kleiweg
Op zaterdag 25 augustus 2018 16:40:55 UTC+2 schreef Jakob Borg: > > On 25 Aug 2018, at 15:21, Peter Kleiweg > > wrote: > > > disabling the cache won't be an option in Go 1.12. What to do then? > > > You don’t say what your issues with the build cache are. If you did, you > might get suggestions.

Re: [go-nuts] Problems with cache

2018-08-25 Thread Jakob Borg
On 25 Aug 2018, at 15:21, Peter Kleiweg mailto:pklei...@xs4all.nl>> wrote: disabling the cache won't be an option in Go 1.12. What to do then? You don’t say what your issues with the build cache are. If you did, you might get suggestions. //jb -- You received this message because you are

[go-nuts] Problems with cache

2018-08-25 Thread Peter Kleiweg
Since Go 1.10, the cache causes many headaches. You can disable the cache with GOCACHE=off. Unless you work on mega projects, you don't need a cache anyway. But disabling the cache won't be an option in Go 1.12. What to do then? Stick with old version of Go? The release notes for Go 1.11 have

Re: [go-nuts] Re: IDE/tools that support the new Go module feature in 1.11?

2018-08-25 Thread Sameer Ajmani
+Ian C, Alan, Rebecca, Michael On the Go team are working with tool owners to migrate tools to the new go/packages API, which adds module support and compatibility with older workspaces. On Sat, Aug 25, 2018 at 6:22 AM Diego Bernardes wrote: > gometalinter and gotests are breaking for me. They

[go-nuts] Re: IDE/tools that support the new Go module feature in 1.11?

2018-08-25 Thread Diego Bernardes
gometalinter and gotests are breaking for me. They were installed from vscode-go. Em sábado, 25 de agosto de 2018 09:45:11 UTC+1, nvcnvn escreveu: > > Hi all, > Do you know any IDE already support intellisense for a project using > "pure" Go module (without /vendor, $GOPATH) > -- You received

Re: [go-nuts] IDE/tools that support the new Go module feature in 1.11?

2018-08-25 Thread Aldrin Leal
Goland has been supporting it for a while: https://blog.jetbrains.com/go/2018/05/18/vgo-integration-support/ -- -- Aldrin Leal, / https://ingenieux.io/about/ On Sat, Aug 25, 2018 at 3:45 AM, nvcnvn wrote: > Hi all, > Do you know any IDE already support intellisense for a project using >

[go-nuts] IDE/tools that support the new Go module feature in 1.11?

2018-08-25 Thread nvcnvn
Hi all, Do you know any IDE already support intellisense for a project using "pure" Go module (without /vendor, $GOPATH) -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an

Re: [go-nuts] internal compilation error while compiling gccgo from source solaris 10

2018-08-25 Thread Amandeep Gautam
Hi Ian, I compiled GMP, MPFR and MPC from source. Next, I configured gcc with modified options: $srcdir/configure \ --prefix=$prefix \ --enable-languages=go \ --with-as=/opt/csw/gnu/as --with-gnu-as \ --with-ld=/usr/ccs/bin/ld --without-gnu-ld \