Aleksey Bakin
Aleksey Bakin
Hi, select syscall has a limitations: > select() can monitor only file descriptors numbers that are less than FD_SETSIZE (1024)—an unreasonably low limit for many modern applications—and this limitation will...
The command ```sh luarocks build --pack-binary-rock /usr/local/lib/luarocks/rocks-5.3/inspect/3.1.3-0/inspect-3.1.3-0.rockspec ``` shows me ``` ... Error: Failed packing /tmp/inspect-3.1.3-0.all.rock ``` When I try to make a `src.rock` using `luarocks pack` I see more...
Hi, thank you for useful library! I've found an issue. The select syscall has a limitations: > select() can monitor only file descriptors numbers that are less than FD_SETSIZE (1024)—an...
Similar stat tools should have a p-value in output. It helps us to understand is difference is real or we are lucky. Look at https://godoc.org/golang.org/x/perf/cmd/benchstat for example.
I hate named returns too :) Well, one case are good and should be allowed by linter I suppose. ``` go func f() (retErr error) { err := errors.New("foo") defer...