[go-nuts] About http template executing error

2019-12-02 Thread 洪嘉鴻
Hello everyone: The version of the golang which I am using is 1.12.9 with WIn10. Now I'm trying to write a web browser. Here are the code and the html . I want to download the data and display the result in the

[go-nuts] Is a public go benchmarking database/dashboard available

2019-12-02 Thread Xiangdong JI
Hi, Wondering if there is any public database/dashboard of Go's benchmarking data available? Thanks. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts

[go-nuts] [Survey] What version of MIPS64x that you use?

2019-12-02 Thread Zhuo Meng
Hi, every Go MIPS64 users. We are discussing about upgrade the minimal requirement version of MIPS64x (mips64/mips64le) to mips64r2. https://github.com/golang/go/issues/35008 However the port maintainer (Cherry) wants to know how many Go MIPS64 users will be affected by this change. Please re

[go-nuts] Re: Symlink warnings in 'go mod' tool output

2019-12-02 Thread Caleb Spare
I ended up filing https://github.com/golang/go/issues/35941. On Wed, Nov 27, 2019 at 4:26 PM Caleb Spare wrote: > > I'm experimenting with converting a large source tree into a Go > module. This went pretty smoothly. However, I'm wondering why 'go mod > tidy' and 'go mod why' print warnings about

Re: [go-nuts] ask for you help about cgo and interface

2019-12-02 Thread Ian Lance Taylor
On Mon, Dec 2, 2019 at 9:57 AM FAN DEAR wrote: > > > How to use add2 function, i am very troubled. On this mailing list please post code as ordinary text, or as a link to the Go playground. Don't post colorized images with a black background. Thanks. You can't declare a Go interface type in C.

[go-nuts] [ANN] Arhat: an experimental deep learning framework implemented in Go

2019-12-02 Thread fragata . ag
I would like to announce the first public release of Arhat, an experimental deep learning framework implemented in Go. Unlike most mainstream frameworks that perform training and inference computations directly, Arhat translates neural network descriptions into standalone lean executable platfo

[go-nuts] ask for you help about cgo and interface

2019-12-02 Thread FAN DEAR
in my go file: package main import "C" // AddListener ... //export AddListener type AddListener interface { addResult(i int) } func main() { } // Add ... //export Add func Add(i, j int) int { return i + j } // Add2 ... //export Add2 func Add2(i, j int, listener AddListener) { listener.addResu

Re: [go-nuts] [gollvm] Can't exec LLVM IR from go code

2019-12-02 Thread 'Than McIntosh' via golang-nuts
Greetings, What you are seeing is expected behavior. In your "hello.go" file, you've defined a "main.main" function, however in order to run that function you need a copy of the Go runtime and standard libraries. When a Go program runs, the "main" function is in fact part of the runtime -- the run