Re: [go-nuts] Building application for windows server 2008 using go 1.13+

2020-07-30 Thread Maxim Via-Net
Ok, thanks, Alex I could persuade our PM's that we shouldn't support Windows Server 2008. В Вт, 28/07/2020 в 23:43 -0700, brainman пишет: > Hello Maixm, > > If you look at > > https://golang.org/doc/go1.13#windows > > page source, you will see that it says > > ``` > Windows > > > The

[go-nuts] Building application for windows server 2008 using go 1.13+

2020-07-28 Thread Maxim Via-Net
Hello everyone, I know about it: https://golang.org/doc/go1.13#windows But may be there is some another way for building a valid application for NT6.0 using go 1.13+, maybe there are some tricks or arguments for compiler? I don't want to freeze application on go 1.12 forever, I think it is a

Re: [go-nuts] where is temp file created by http server

2020-07-16 Thread Maxim Via-Net
Hello, it depends on OS. You can show it in your logs, with something like that: log.Infof("Directory for storing large files: %s", os.TempDir()) В Чт, 16/07/2020 в 03:44 -0700, hao dong пишет: > As I have learned, http server will store user-upload file on disk > when its size exceed 32MB. > I