Crashk1d
Crashk1d
Every document or blog I have found are merely some simple helloworld crap with a single directory of source files and no external libraries. I'm trying to convert my k8s...
Anyone know of a good example of writing tests for code using this library. Where I work we have a ridiculous pull request process that requires near total test coverage...
``` func SetupTests(t *testing.T) *gorm.DB { mocket.Catcher.Register() mocket.Catcher.Logging = true db, err := gorm.Open(mocket.DriverName, "connection_string") if err != nil { t.Fatalf(err.Error()) } return db } func TestInsertStoragePool(t *testing.T) { cases...
I'm trying to run "dep ensure" and get these warnings: ` Warning: the following project(s) have [[constraint]] stanzas in Gopkg.toml: ✗ github.com/davecgh/go-spew ✗ github.com/ghodss/yaml ✗ github.com/gogo/protobuf ✗ github.com/golang/glog ✗ github.com/golang/protobuf...
I'm trying to build a go binary using this library and hitting an error I can't work around. Searched and searched and find nothing. ``` $ ./bin/list_hosts dyld[51973]: Library not...
Updated another brew package, it also updated ipmitool without warning or desire, resulting in a broken ipmitool 1 hour before this was needed for a VP-level demo. Good times. Failed...
I'm hitting an issue where I'm getting an error trying to use more than one ssh extra arg: This is the command that the library ends up running. This works...
I'm trying to determine if this is the correct library for me. I have an interactive automation tool that manages large software defined storage platforms like ceph, etc... One of...
THis does not work, output is always "": My struct and method: ``` type SDCInstanceOutput []scaleio.SdcInstance // Output - filter results per cli options then output in the correct format...
I need to plot various performance metrics like throughput and latency vs object size as object size increases and things like that. I can't seem to figure out how to...