[go-nuts] Accessing experiments in the Go Playground

2023-06-19 Thread Leigh McCulloch
Once Go 1.21 is released, will it be possible to experiment with loopvar on the playground, and share links to code running on the playground that uses the experiment? (The loopvar experiment being: https://github.com/golang/go/wiki/LoopvarExperiment) -- You received this message because you

[go-nuts] Re: Intentionally omitting requires in go.mod - alternative to multi-module repository?

2022-01-30 Thread Leigh McCulloch
I'm a user of the sentry-go SDK who has been impacted by the large number of dependencies in the past. >Independently, if your users have automated tools that are issuing false-positive CVE warnings based on the module graph instead of the package-import graph, you may want to suggest that they

Re: [go-nuts] Go memory usage inside containers

2018-09-12 Thread Leigh McCulloch
runtime.NumCPU() call still returned 16. Leigh On Wednesday, September 12, 2018 at 6:46:34 AM UTC-7, Ian Lance Taylor wrote: > > On Tue, Sep 11, 2018 at 11:48 PM, Leigh McCulloch > wrote: > > > > Does anyone here know how Go interacts with memory limits inside &g

[go-nuts] Go memory usage inside containers

2018-09-11 Thread Leigh McCulloch
Hi, Does anyone here know how Go interacts with memory limits inside containers? (e.g. Kubernetes, Docker) Does the Go runtime have similar problems as the Java runtime, in that it doesn't know what the container limit is, and only knows what the physical limit is for the entire instance? Or