[go-nuts] Re: Please how can i compile/build all go packages including docs in my default go installation?

2017-07-03 Thread Dave Cheney
On Tuesday, 4 July 2017 12:45:52 UTC+10, Solex Ikeh wrote: > > Please how can i compile/build all go packages including docs in my > default go installation? This has already been done for you. You should not need to take any action. > > I noticed that go came with a whole clone of the

[go-nuts] Re: Go Run Acces Denied

2017-07-03 Thread Dave Cheney
Is your anti virus program preventing you from running this program? On Tuesday, 4 July 2017 12:45:52 UTC+10, Bisnitarul TB wrote: > > Hello! > I have this script : https://pastebin.com/WYAMUmj9 > > When i run Both print and print2 (using go run test.go) everything works > If i only run print2

Re: [go-nuts] Explain the meaning of iota

2017-07-03 Thread Bartosz Grzybowski
Was looking for this for some time, great explanation, thanks ! W dniu niedziela, 2 lipca 2017 23:37:51 UTC+2 użytkownik Sam Whited napisał: > > On Sun, Jul 2, 2017 at 4:34 PM, Sam Whited > wrote: > > This means that the code you pasted is the same as if you'd written: >

[go-nuts] Go Run Acces Denied

2017-07-03 Thread Pukapy
Hello! I have this script : https://pastebin.com/WYAMUmj9 When i run Both print and print2 (using go run test.go) everything works If i only run print2 it throws me this error: "fork/exec C:\Users\Puka\AppData\Local\Temp\go-build172649898\command-line-arguments\_obj\exe\test.exe: Access is

[go-nuts] Please how can i compile/build all go packages including docs in my default go installation?

2017-07-03 Thread Solex Ikeh
Please how can i compile/build all go packages including docs in my default go installation? I noticed that go came with a whole clone of the parent site including docs and others but they are in html/text files, how can i compile them to ".exe" to run on localhost? -- You received this

[go-nuts] Maximum number of requests per HTTP connection?

2017-07-03 Thread Mikhail Mazurskiy
Hello there, Is there a way to limit the number of http requests a client will issue via a single tcp connection? I cannot find anything relevant to this question. Maybe a snippet of code to implement this... The use case is to force a highly active http connection to be closed after certain

[go-nuts] [ANN] go-dedup/simhash, enhanced Go simhash package

2017-07-03 Thread Tong Sun
FYI, I've just enhanced the Go simhash package from mfonda/simhash to go-dedup /simhash . The reasons & enhancements are summaries here: https://github.com/go-dedup/simhash#versions Detailed

Re: [go-nuts] go build for mips

2017-07-03 Thread lucasw
Sorry for not replying sooner. Building with CGO_ENABLED=1 GOARCH=mips GOOS=linux go build hello.go I got an Illegal Instruction running on my mips board. I used a debugger to find out what was going on but it did not gave better answers why the illegal instruction was occuring. I was able