Laurent Demailly
Laurent Demailly
- [x] Avoid panic in [go-cmp](https://github.com/google/go-cmp/blob/v0.6.0/cmp/compare.go#L312-L314) when it tries to find an Equal method - This one is a bit dicey as I don't know how to make it conditionally...
```go package main import ( "net/http" "log" ) func helloHandler(w http.ResponseWriter, r *http.Request) { w.Write([]byte("Hello, TinyGo!")) } func main() { mux := http.NewServeMux() mux.HandleFunc("/", helloHandler) log.Fatal(http.ListenAndServe(":8080", mux)) } ``` ```shell...
Follow up on https://github.com/fortio/fortio/pull/927 We could use `net.Dialer`'s `Control` to set SO_REUSEPORT https://github.com/libp2p/go-reuseport/blob/master/control_unix.go#L17 tbd: whether that creates spurious failures and if it dynamically picks more/same source ports and "intelligently"
### Welcome - [X] Yes, I understand that the GitHub action repository is not the repository of golangci-lint itself. - [X] Yes, I've searched similar issues on GitHub and didn't...
In order for users of the library to save and restore the history, expose: - `History() []string`: returns a slice of strings containing the history of entered commands so far....
consider https://github.com/giltene/wrk2 (or my biased preference https://github.com/fortio/fortio#fortio you can get graphical results etc eg https://demo.fortio.org/browse?url=2022-05-08-001349_3_Sample_max_qps.json ) https://github.com/fortio/fortio/wiki/FAQ#how-is-fortio-different-from-wrk
"new" since go 1.16 https://pkg.go.dev/flag#FlagSet.Func
so one can script the load test related/could solve: #192 #301 #346 grol : website https://grol.io/ source tree https://github.com/grol-io/grol (I wrote it)
_Originally posted by @ldemailly in https://github.com/fortio/fortio/pull/969#discussion_r1747674148_
Version 2 of https://github.com/golang/term/pull/15 - Much less footprint/changes in x/term in exchange for duplication and much more in callers (https://github.com/fortio/terminal/pull/85), including fairly tricky/obscure handling of adding to history automatically or...