-
Is it possible to separate the package? We only need mock service when running unit test and won't generate it
## Background
We need put generated mock inside `gen/mock` directory. The directory t…
-
#### Version information:
go-ipfs version: 0.4.10-
Repo version: 5
System version: amd64/linux
Golang version: go1.8.3
#### Type:
Bug
#### Severity:
Medium
#### Description:
go-ipfs …
-
https://github.com/enocom/gopher-reading-list (Gopher学习资源总结, 👍 💯💯)
https://segmentfault.com/u/qyuhen(go性能优化10讲)
--------
https://wuyin.io/2018/03/07/50-shades-of-golang-traps-gotchas-mistake…
-
Go has deprecated package `syscall` since 1.4. I think we should use the `golang.org/x/sys ` repository.
See https://golang.org/pkg/syscall/#pkg-overview
-
I've been using the driver in an application for about 5 months and have had very few issues. However, recently I've noticed I've been getting `bad connection` errors. It always seems to be pop up fro…
-
### What are you trying to do?
I am trying to expose my IoT device's web and ssh interface through tailscale. Things have worked out but the compiled binary sizes are relatively big for my IoT device…
-
It makes debugging easier.
Some candidates (chosen via 10 minutes of googling):
* https://github.com/sirupsen/logrus
* :x: Is in maintenance mode, which is not per-se bad but the README does …
-
Code
```go
package main
import "fmt"
type someCollection []string
func (c *someCollection) add(el string) {
*c = append(*c, el)
}
func main() {
var c someCollection
c.add("test"…
-
Hello,
We noticed that for some reason ligato will add breaking config once restarted.
On the first apply of config, via etcd, it will work correctly. But if we restart ligato, additional entries…
-
Write HTTP DB wrapper for basic non-batched reads and updates. Need to implement DB interface and DBCreator interface from /pkg/ycsb/db.go
DB interface is responsible for basic key-value operations…