[go-nuts] Re: Go 1.10 is released

2018-02-20 Thread Andrew Watson
Awesome! I discovered this by accident because I was upgrading my MBP via 
homebrew expecting a 1.9.x version and it came up with 1.10! 

On Friday, February 16, 2018 at 2:36:22 PM UTC-5, Andrew Bonventre wrote:
>
> Hello gophers,
>
> We just released Go 1.10.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.10
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.10" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.10
>
> Thanks to everyone who contributed to the release.
>
> Andy on behalf of the Go Team
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Henrik Johansson
Well, first I'll have a look at it's magic 

On Mon, Feb 19, 2018, 22:06 Rob Pike  wrote:

> You could say
>
> export GOCACHE=off
>
> in your bashrc to disable the cache permanently.
>
> -rob
>
>
> On Tue, Feb 20, 2018 at 8:00 AM, Henrik Johansson 
> wrote:
>
>> Ok, good to know. Thanks!
>
>
>>
>> On Mon, Feb 19, 2018, 21:49 Ian Lance Taylor  wrote:
>>
>>> On Mon, Feb 19, 2018 at 12:40 PM, Henrik Johansson 
>>> wrote:
>>> > Yes I understand. I was just wondering if the GOCACHE flag is
>>> permanent or
>>> > as a temp safety in case someone encounters a bug in the caching.
>>>
>>> Ah.  We are going to keep the GOCACHE environment variable around,
>>> because it can be used not only to disable the cache but to set the
>>> cache's location.
>>>
>>> Ian
>>>
>>> > On Mon, Feb 19, 2018, 21:35 Ian Lance Taylor  wrote:
>>> >>
>>> >> On Mon, Feb 19, 2018 at 12:08 PM, Henrik Johansson <
>>> dahankz...@gmail.com>
>>> >> wrote:
>>> >> > Ah, that's not what I meant but GOCACHE var itself and if it will be
>>> >> > permanent as a way to disable the cache.
>>> >>
>>> >> Sorry, I'm not sure exactly what you are saying.  There is no way to
>>> >> permanently disable the cache, other than always setting the GOCACHE
>>> >> environment variable every time you run the go tool.
>>> >>
>>> >> Ian
>>> >>
>>> >> > On Mon, Feb 19, 2018, 21:00 Ian Lance Taylor 
>>> wrote:
>>> >> >>
>>> >> >> On Sun, Feb 18, 2018 at 11:00 PM, Henrik Johansson
>>> >> >> 
>>> >> >> wrote:
>>> >> >> >
>>> >> >> > Why I wondered was because to build script (a tiny settings file
>>> >> >> > really)
>>> >> >> > for
>>> >> >> > Archlinux uses this flag to build it's Go packages.
>>> >> >> > Is it available as a paranoia "i really need all the tests run"?
>>> Will
>>> >> >> > it
>>> >> >> > be
>>> >> >> > removed later on?
>>> >> >>
>>> >> >> Sorry, I don't know.  I don't know who wrote that script or why it
>>> sets
>>> >> >> GOCACHE.
>>> >> >>
>>> >> >> Ian
>>> >> >>
>>> >> >>
>>> >> >> > sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor <
>>> i...@golang.org>:
>>> >> >> >>
>>> >> >> >> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson
>>> >> >> >> 
>>> >> >> >> wrote:
>>> >> >> >> > The GOCACHE variable. What is it's effect when building Go
>>> itself?
>>> >> >> >> > It doesn't disable test caching when using the resulting go
>>> tools
>>> >> >> >> > right?
>>> >> >> >>
>>> >> >> >> Right.
>>> >> >> >>
>>> >> >> >> Ian
>>>
>> --
>>
> 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
>> email to golang-nuts+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Rob Pike
You could say

export GOCACHE=off

in your bashrc to disable the cache permanently.

-rob



On Tue, Feb 20, 2018 at 8:00 AM, Henrik Johansson 
wrote:

> Ok, good to know. Thanks!
>
>
> On Mon, Feb 19, 2018, 21:49 Ian Lance Taylor  wrote:
>
>> On Mon, Feb 19, 2018 at 12:40 PM, Henrik Johansson 
>> wrote:
>> > Yes I understand. I was just wondering if the GOCACHE flag is permanent
>> or
>> > as a temp safety in case someone encounters a bug in the caching.
>>
>> Ah.  We are going to keep the GOCACHE environment variable around,
>> because it can be used not only to disable the cache but to set the
>> cache's location.
>>
>> Ian
>>
>> > On Mon, Feb 19, 2018, 21:35 Ian Lance Taylor  wrote:
>> >>
>> >> On Mon, Feb 19, 2018 at 12:08 PM, Henrik Johansson <
>> dahankz...@gmail.com>
>> >> wrote:
>> >> > Ah, that's not what I meant but GOCACHE var itself and if it will be
>> >> > permanent as a way to disable the cache.
>> >>
>> >> Sorry, I'm not sure exactly what you are saying.  There is no way to
>> >> permanently disable the cache, other than always setting the GOCACHE
>> >> environment variable every time you run the go tool.
>> >>
>> >> Ian
>> >>
>> >> > On Mon, Feb 19, 2018, 21:00 Ian Lance Taylor 
>> wrote:
>> >> >>
>> >> >> On Sun, Feb 18, 2018 at 11:00 PM, Henrik Johansson
>> >> >> 
>> >> >> wrote:
>> >> >> >
>> >> >> > Why I wondered was because to build script (a tiny settings file
>> >> >> > really)
>> >> >> > for
>> >> >> > Archlinux uses this flag to build it's Go packages.
>> >> >> > Is it available as a paranoia "i really need all the tests run"?
>> Will
>> >> >> > it
>> >> >> > be
>> >> >> > removed later on?
>> >> >>
>> >> >> Sorry, I don't know.  I don't know who wrote that script or why it
>> sets
>> >> >> GOCACHE.
>> >> >>
>> >> >> Ian
>> >> >>
>> >> >>
>> >> >> > sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor > >:
>> >> >> >>
>> >> >> >> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson
>> >> >> >> 
>> >> >> >> wrote:
>> >> >> >> > The GOCACHE variable. What is it's effect when building Go
>> itself?
>> >> >> >> > It doesn't disable test caching when using the resulting go
>> tools
>> >> >> >> > right?
>> >> >> >>
>> >> >> >> Right.
>> >> >> >>
>> >> >> >> Ian
>>
> --
> 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
> email to golang-nuts+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Henrik Johansson
Ok, good to know. Thanks!

On Mon, Feb 19, 2018, 21:49 Ian Lance Taylor  wrote:

> On Mon, Feb 19, 2018 at 12:40 PM, Henrik Johansson 
> wrote:
> > Yes I understand. I was just wondering if the GOCACHE flag is permanent
> or
> > as a temp safety in case someone encounters a bug in the caching.
>
> Ah.  We are going to keep the GOCACHE environment variable around,
> because it can be used not only to disable the cache but to set the
> cache's location.
>
> Ian
>
> > On Mon, Feb 19, 2018, 21:35 Ian Lance Taylor  wrote:
> >>
> >> On Mon, Feb 19, 2018 at 12:08 PM, Henrik Johansson <
> dahankz...@gmail.com>
> >> wrote:
> >> > Ah, that's not what I meant but GOCACHE var itself and if it will be
> >> > permanent as a way to disable the cache.
> >>
> >> Sorry, I'm not sure exactly what you are saying.  There is no way to
> >> permanently disable the cache, other than always setting the GOCACHE
> >> environment variable every time you run the go tool.
> >>
> >> Ian
> >>
> >> > On Mon, Feb 19, 2018, 21:00 Ian Lance Taylor  wrote:
> >> >>
> >> >> On Sun, Feb 18, 2018 at 11:00 PM, Henrik Johansson
> >> >> 
> >> >> wrote:
> >> >> >
> >> >> > Why I wondered was because to build script (a tiny settings file
> >> >> > really)
> >> >> > for
> >> >> > Archlinux uses this flag to build it's Go packages.
> >> >> > Is it available as a paranoia "i really need all the tests run"?
> Will
> >> >> > it
> >> >> > be
> >> >> > removed later on?
> >> >>
> >> >> Sorry, I don't know.  I don't know who wrote that script or why it
> sets
> >> >> GOCACHE.
> >> >>
> >> >> Ian
> >> >>
> >> >>
> >> >> > sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor  >:
> >> >> >>
> >> >> >> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson
> >> >> >> 
> >> >> >> wrote:
> >> >> >> > The GOCACHE variable. What is it's effect when building Go
> itself?
> >> >> >> > It doesn't disable test caching when using the resulting go
> tools
> >> >> >> > right?
> >> >> >>
> >> >> >> Right.
> >> >> >>
> >> >> >> Ian
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Ian Lance Taylor
On Mon, Feb 19, 2018 at 12:40 PM, Henrik Johansson  wrote:
> Yes I understand. I was just wondering if the GOCACHE flag is permanent or
> as a temp safety in case someone encounters a bug in the caching.

Ah.  We are going to keep the GOCACHE environment variable around,
because it can be used not only to disable the cache but to set the
cache's location.

Ian

> On Mon, Feb 19, 2018, 21:35 Ian Lance Taylor  wrote:
>>
>> On Mon, Feb 19, 2018 at 12:08 PM, Henrik Johansson 
>> wrote:
>> > Ah, that's not what I meant but GOCACHE var itself and if it will be
>> > permanent as a way to disable the cache.
>>
>> Sorry, I'm not sure exactly what you are saying.  There is no way to
>> permanently disable the cache, other than always setting the GOCACHE
>> environment variable every time you run the go tool.
>>
>> Ian
>>
>> > On Mon, Feb 19, 2018, 21:00 Ian Lance Taylor  wrote:
>> >>
>> >> On Sun, Feb 18, 2018 at 11:00 PM, Henrik Johansson
>> >> 
>> >> wrote:
>> >> >
>> >> > Why I wondered was because to build script (a tiny settings file
>> >> > really)
>> >> > for
>> >> > Archlinux uses this flag to build it's Go packages.
>> >> > Is it available as a paranoia "i really need all the tests run"? Will
>> >> > it
>> >> > be
>> >> > removed later on?
>> >>
>> >> Sorry, I don't know.  I don't know who wrote that script or why it sets
>> >> GOCACHE.
>> >>
>> >> Ian
>> >>
>> >>
>> >> > sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor :
>> >> >>
>> >> >> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson
>> >> >> 
>> >> >> wrote:
>> >> >> > The GOCACHE variable. What is it's effect when building Go itself?
>> >> >> > It doesn't disable test caching when using the resulting go tools
>> >> >> > right?
>> >> >>
>> >> >> Right.
>> >> >>
>> >> >> Ian

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Henrik Johansson
Yes I understand. I was just wondering if the GOCACHE flag is permanent or
as a temp safety in case someone encounters a bug in the caching.

On Mon, Feb 19, 2018, 21:35 Ian Lance Taylor  wrote:

> On Mon, Feb 19, 2018 at 12:08 PM, Henrik Johansson 
> wrote:
> > Ah, that's not what I meant but GOCACHE var itself and if it will be
> > permanent as a way to disable the cache.
>
> Sorry, I'm not sure exactly what you are saying.  There is no way to
> permanently disable the cache, other than always setting the GOCACHE
> environment variable every time you run the go tool.
>
> Ian
>
> > On Mon, Feb 19, 2018, 21:00 Ian Lance Taylor  wrote:
> >>
> >> On Sun, Feb 18, 2018 at 11:00 PM, Henrik Johansson <
> dahankz...@gmail.com>
> >> wrote:
> >> >
> >> > Why I wondered was because to build script (a tiny settings file
> really)
> >> > for
> >> > Archlinux uses this flag to build it's Go packages.
> >> > Is it available as a paranoia "i really need all the tests run"? Will
> it
> >> > be
> >> > removed later on?
> >>
> >> Sorry, I don't know.  I don't know who wrote that script or why it sets
> >> GOCACHE.
> >>
> >> Ian
> >>
> >>
> >> > sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor :
> >> >>
> >> >> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson
> >> >> 
> >> >> wrote:
> >> >> > The GOCACHE variable. What is it's effect when building Go itself?
> >> >> > It doesn't disable test caching when using the resulting go tools
> >> >> > right?
> >> >>
> >> >> Right.
> >> >>
> >> >> Ian
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Ian Lance Taylor
On Mon, Feb 19, 2018 at 12:08 PM, Henrik Johansson  wrote:
> Ah, that's not what I meant but GOCACHE var itself and if it will be
> permanent as a way to disable the cache.

Sorry, I'm not sure exactly what you are saying.  There is no way to
permanently disable the cache, other than always setting the GOCACHE
environment variable every time you run the go tool.

Ian

> On Mon, Feb 19, 2018, 21:00 Ian Lance Taylor  wrote:
>>
>> On Sun, Feb 18, 2018 at 11:00 PM, Henrik Johansson 
>> wrote:
>> >
>> > Why I wondered was because to build script (a tiny settings file really)
>> > for
>> > Archlinux uses this flag to build it's Go packages.
>> > Is it available as a paranoia "i really need all the tests run"? Will it
>> > be
>> > removed later on?
>>
>> Sorry, I don't know.  I don't know who wrote that script or why it sets
>> GOCACHE.
>>
>> Ian
>>
>>
>> > sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor :
>> >>
>> >> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson
>> >> 
>> >> wrote:
>> >> > The GOCACHE variable. What is it's effect when building Go itself?
>> >> > It doesn't disable test caching when using the resulting go tools
>> >> > right?
>> >>
>> >> Right.
>> >>
>> >> Ian

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Henrik Johansson
Ah, that's not what I meant but GOCACHE var itself and if it will be
permanent as a way to disable the cache.

On Mon, Feb 19, 2018, 21:00 Ian Lance Taylor  wrote:

> On Sun, Feb 18, 2018 at 11:00 PM, Henrik Johansson 
> wrote:
> >
> > Why I wondered was because to build script (a tiny settings file really)
> for
> > Archlinux uses this flag to build it's Go packages.
> > Is it available as a paranoia "i really need all the tests run"? Will it
> be
> > removed later on?
>
> Sorry, I don't know.  I don't know who wrote that script or why it sets
> GOCACHE.
>
> Ian
>
>
> > sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor :
> >>
> >> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson <
> dahankz...@gmail.com>
> >> wrote:
> >> > The GOCACHE variable. What is it's effect when building Go itself?
> >> > It doesn't disable test caching when using the resulting go tools
> right?
> >>
> >> Right.
> >>
> >> Ian
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Ian Lance Taylor
On Sun, Feb 18, 2018 at 11:00 PM, Henrik Johansson  wrote:
>
> Why I wondered was because to build script (a tiny settings file really) for
> Archlinux uses this flag to build it's Go packages.
> Is it available as a paranoia "i really need all the tests run"? Will it be
> removed later on?

Sorry, I don't know.  I don't know who wrote that script or why it sets GOCACHE.

Ian


> sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor :
>>
>> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson 
>> wrote:
>> > The GOCACHE variable. What is it's effect when building Go itself?
>> > It doesn't disable test caching when using the resulting go tools right?
>>
>> Right.
>>
>> Ian

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Nathan Kerr
I have also updated my release related resources:


   - Go Release Timeline 
   - When Should You Upgrade Go? 
   
   
Enjoy!

On Monday, February 19, 2018 at 6:17:18 AM UTC-7, Michel Casabianca wrote:
>
> Hi Gophers,
>
> I have updated my list of Go interfaces for this release : 
> http://sweetohm.net/article/go-interfaces.en.html
>
> Enjoy!
>
> 2018-02-19 8:00 GMT+01:00 Henrik Johansson  >:
>
>> Thx,
>>
>> Why I wondered was because to build script (a tiny settings file really) 
>> for Archlinux uses this flag to build it's Go packages.
>> Is it available as a paranoia "i really need all the tests run"? Will it 
>> be removed later on?
>>
>>
>>
>>
>> sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor > >:
>>
>>> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson >> > wrote:
>>> > The GOCACHE variable. What is it's effect when building Go itself?
>>> > It doesn't disable test caching when using the resulting go tools 
>>> right?
>>>
>>> Right.
>>>
>>> Ian
>>>
>> -- 
>> 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 
>> email to golang-nuts...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Michel Casabianca
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Johann Höchtl


Am Montag, 19. Februar 2018 14:17:18 UTC+1 schrieb Michel Casabianca:
>
> Hi Gophers,
>
> I have updated my list of Go interfaces for this release : 
> http://sweetohm.net/article/go-interfaces.en.html
>
>
Just came across this very helpful overview (and sorry for hi-jacking the 
thread). Can guru enlist all the interfaces available within a given scope? 


Enjoy!
>
> 2018-02-19 8:00 GMT+01:00 Henrik Johansson  >:
>
>> Thx,
>>
>> Why I wondered was because to build script (a tiny settings file really) 
>> for Archlinux uses this flag to build it's Go packages.
>> Is it available as a paranoia "i really need all the tests run"? Will it 
>> be removed later on?
>>
>>
>>
>>
>> sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor > >:
>>
>>> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson >> > wrote:
>>> > The GOCACHE variable. What is it's effect when building Go itself?
>>> > It doesn't disable test caching when using the resulting go tools 
>>> right?
>>>
>>> Right.
>>>
>>> Ian
>>>
>> -- 
>> 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 
>> email to golang-nuts...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Michel Casabianca
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-19 Thread Michel Casabianca
Hi Gophers,

I have updated my list of Go interfaces for this release :
http://sweetohm.net/article/go-interfaces.en.html

Enjoy!

2018-02-19 8:00 GMT+01:00 Henrik Johansson :

> Thx,
>
> Why I wondered was because to build script (a tiny settings file really)
> for Archlinux uses this flag to build it's Go packages.
> Is it available as a paranoia "i really need all the tests run"? Will it
> be removed later on?
>
>
>
>
> sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor :
>
>> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson 
>> wrote:
>> > The GOCACHE variable. What is it's effect when building Go itself?
>> > It doesn't disable test caching when using the resulting go tools right?
>>
>> Right.
>>
>> Ian
>>
> --
> 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
> email to golang-nuts+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Michel Casabianca

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-18 Thread Henrik Johansson
Thx,

Why I wondered was because to build script (a tiny settings file really)
for Archlinux uses this flag to build it's Go packages.
Is it available as a paranoia "i really need all the tests run"? Will it be
removed later on?



sön 18 feb. 2018 kl 23:04 skrev Ian Lance Taylor :

> On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson 
> wrote:
> > The GOCACHE variable. What is it's effect when building Go itself?
> > It doesn't disable test caching when using the resulting go tools right?
>
> Right.
>
> Ian
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-18 Thread Ian Lance Taylor
On Sun, Feb 18, 2018 at 11:22 AM, Henrik Johansson  wrote:
> The GOCACHE variable. What is it's effect when building Go itself?
> It doesn't disable test caching when using the resulting go tools right?

Right.

Ian

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [go-nuts] Re: Go 1.10 is released

2018-02-18 Thread Henrik Johansson
The GOCACHE variable. What is it's effect when building Go itself?
It doesn't disable test caching when using the resulting go tools right?

sön 18 feb. 2018 kl 19:55 skrev Lucio :

>
>
> On Sunday, 18 February 2018 04:20:39 UTC+2, Dmitriy Cherchenko wrote:
>>
>> I like how the Go team isn't trying to support very old operating
>> systems. We should focus on modern systems and expect people to try to stay
>> up to date. Thank you!
>>
>> And be restricted to shrinking bio-diversity. How sad that people may
> perceive this as an asset!
>
> Lucio.
>
> --
> 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
> email to golang-nuts+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.10 is released

2018-02-18 Thread Lucio


On Sunday, 18 February 2018 04:20:39 UTC+2, Dmitriy Cherchenko wrote:
>
> I like how the Go team isn't trying to support very old operating systems. 
> We should focus on modern systems and expect people to try to stay up to 
> date. Thank you!
>
> And be restricted to shrinking bio-diversity. How sad that people may 
perceive this as an asset!

Lucio.

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.10 is released

2018-02-18 Thread Compiler
https://golang.org/pkg/plugin/

Not Forget this :
 Currently plugins are only supported on Linux and macOS.

On Friday, February 16, 2018 at 11:06:22 PM UTC+3:30, Andrew Bonventre 
wrote:
>
> Hello gophers,
>
> We just released Go 1.10.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.10
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.10" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.10
>
> Thanks to everyone who contributed to the release.
>
> Andy on behalf of the Go Team
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.10 is released

2018-02-17 Thread Dmitriy Cherchenko
I like how the Go team isn't trying to support very old operating systems. 
We should focus on modern systems and expect people to try to stay up to 
date. Thank you!


On Friday, February 16, 2018 at 11:36:22 AM UTC-8, Andrew Bonventre wrote:
>
> Hello gophers,
>
> We just released Go 1.10.
>
> You can read the announcement blog post here:
>   https://blog.golang.org/go1.10
>
> You can download binary and source distributions from our download page:
>   https://golang.org/dl/
>
> To compile from source using a Git checkout, update to the release with 
> "git checkout go1.10" and build as usual.
>
> To find out what has changed, read the release notes:
>   https://golang.org/doc/go1.10
>
> Thanks to everyone who contributed to the release.
>
> Andy on behalf of the Go Team
>

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[go-nuts] Re: Go 1.10 is released

2018-02-16 Thread Kurt Jung

>
> We just released Go 1.10.


Nice work! Building multi-file packages is incredibly fast with the new 
caching system.

-- Kurt

-- 
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 email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.