nsf

Results 12 issues of nsf

E.g. here `go` is a valid prefix, but also a keyword, and autocompletion fails to use it as a prefix. ``` go package main import ( "github.com/jinzhu/gorm" ) func main()...

Bug

```go package main import "time" func test() { t := time.NewTicker(time.Second) select { case foo, ok :=

FeatureRequest

That's just a fact. Given circumstances (Go 1.6 gets new binary format for packages), maybe it's a good time to start it now. For those who are interested, the main...

Info

http://golang.org/doc/go_spec.html#Method_expressions Example: package main ``` import ( "fmt" ) type Int int func (i Int) String() string { return fmt.Sprint(int(i)) } func main() { f := Int.String // here gocode...

Bug

It's not a bug report but more like a question/discussion topic. So, I have this engine of mine where I have a rendering thread which runs C++ code and scripting...

enhancement
multi-contexts

Just in case if you're curious. It avoids using channels for communications and uses sync.WaitGroup instead. Results are collected via arrays and then aggregated inside a single goroutine. On my...

Seems like after rewriting windows implementation it just hangs with a deadlock. Needs to be fixed.

Bug

Need to do that, one day, maybe.

Will not give a reproducable example, however I will provide a very detailed description of what I'm observing here and I think it's a bug. I was using react-static, which...

On line 97 in the code the "dtype" variable is used, which is always undefined on that else branch, as it was declared on line 79 and never initialized. I...