Re: [go-nuts] "go-import" is great, we need "go-delete"

2025-02-06 Thread thepud...@gmail.com
Hi Mike, My understanding is that the folks operating the proxy have already removed that: "note that the module in question is no longer available from the module proxy" https://github.com/golang/go/issues/66653#issuecomment-2637831755 Best regards, --thepudds On Thursday, Feb

Re: [go-nuts] Removing a module from a multi-module repository

2024-12-22 Thread thepud...@gmail.com
Hi Doug, Consider this a drive by comment, but you might be able to create a version of the nested module that does not have any code in it, and set up a requirement cycle between the nested module and a new parent version. I think there’s a general approach of creating a requirement cycle f

[go-nuts] Re: 'go run hello.go' taking ~30 seconds on windows

2022-12-14 Thread thepud...@gmail.com
Hi Declan, Virus scanners can slow things down significantly on Windows, including virus scanners can go into overdrive if you are touching many files, touching files with atypical extensions, or building and then immediately executing a new binary. To start, you could try temporarily disablin

Re: [go-nuts] where is GOROOT set?

2022-11-28 Thread thepud...@gmail.com
Hi Pat, FWIW, I pulled together a TLDR on modules some time ago that I think hits upon each of the different issues you encountered in this thread. It also tries to summarize the core modules concepts, along with a bit of advice on how to stay on the "happy path" when starting out with Go modul

[go-nuts] Re: How go.work knows which module refers to which folder

2022-04-06 Thread thepud...@gmail.com
Hi there, I might be misunderstanding your question, but a 'use' directive in a go.work file points to a directory. In your example, there would not be any ambiguity -- 'use ./hello' in a go.work file would refer to whatever module you have located in the 'hello' directory in your local files

[go-nuts] [generics] type switches

2021-02-20 Thread thepud...@gmail.com
Hello fellow gophers, Ian announced the intention to update how type switches work in the generics proposal in a golang-nuts thread from this August: https://groups.google.com/g/golang-nuts/c/iAD0NBz3DYw It included this from Ian (which is a snippet of his item #4 from his first post ther