Re: [go-nuts] How to disable all go compiler build output compressions?

2022-12-15 Thread Aurora
By empty, I mean it didn't actually contain any actual data, just zeros. That's why it's being compressed that much. I embedded the file into the Go code using the standard embed directive. ``` package main import _ "embed" //go:embed .empty var data []byte ``` On Friday, 16 December

Re: [go-nuts] How to disable all go compiler build output compressions?

2022-12-15 Thread Kurtis Rader
Please clarify what you mean by "embedded an empty 100MB file". What does "empty" mean and how did you "embed" it? Can you show us an example of what you're trying to do (obviously replacing the 100MB of "empty" with a placeholder). On Thu, Dec 15, 2022 at 10:58 AM Aurora wrote: > I've embedded

[go-nuts] How to disable all go compiler build output compressions?

2022-12-15 Thread Aurora
I've embedded an empty 100MB file in my Go code, for some testing purposes. When I run 'go build', the binary output would be something around 20MB. I want the output binary to be more than 100MB, its real size. How's this compression being applied to the binary? How to disable all such

[go-nuts] Re: App Engine hasn't upgraded beyond Go 1.16, which is now out of security window

2022-12-15 Thread 'Olivier Favre' via golang-nuts
Hi, I think App Engine is not getting as much development efforts as Cloud Run does. I foresee it the same fate as Legacy Networks versus VPC. That said, it looks like they were unconfortable with this situation as they released Go 1.18 and 1.19 (NB: not 1.17) a few days ago:

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

2022-12-15 Thread Henry
Assuming that it is a basic Hello World program, I don't have such problems on my Windows 11 laptop and like many Windows machines, it has antivirus, etc. running. I think it could be something specific to your machine or environment. On Thursday, December 15, 2022 at 2:11:48 PM UTC+7