gorump
gorump copied to clipboard
go on Rumprun
Following [instructions in README](https://github.com/deferpanic/gorump#install-from-apt-get), attempt at installing gorump via apt-get failed: ``` root@060ddb7b988b:/# apt-get install -y gorump Reading package lists... Done Building dependency tree Reading state information... Done The following...
GO15VENDOREXPERIMENT is enabled; I'm in the right GOPATH; there's a vendor directory. The `gorump` binary appears to either ignore the environment variable, or has broken vendor experiment code. Or, more...
I am experiencing a stack overflow when with gorump. I believe that the core cause is that the stack is not change when performing a system call, but i am...
we should have a script that applies all of our updates in one fell swoop https://github.com/deferpanic/gorump/issues/16
not sure how possible this is in all cases but if we can we should
To reproduce, run a go http server (i used the one here: https://github.com/emc-advanced-dev/unik/tree/master/docs/examples/example_go_httpd) and perform a lot of requests: `while true; do curl http://192.168.4.141:8080/ ; done` (192.168.4.141 is the address...
unexpected error occurred when running a test app with gorump (was observed with both xen & qemu): application code: ``` package main import ( "fmt" "net/http" ) var someText string...