Steven Soroka
Steven Soroka
``` panic: runtime error: index out of range goroutine 11 [running]: panic(0x3828a0, 0xc4200120f0) /usr/local/go/src/runtime/panic.go:500 +0x1a1 main.(*Slave).parseSonarData(0xc4200ee700, 0xc42256c6fc, 0xb78ff, 0xb7904, 0xc4202df838, 0x71090, 0xc4202df710) github.com/dvyukov/go-fuzz/go-fuzz/sonar.go:79 +0x723 main.(*Slave).processSonarData(0xc4200ee700, 0xc42133a000, 0x11249, 0x11249, 0x2700000, 0xffffb,...
using `ParseBase58` as an example, values should round-trip properly back to their original value, or error. ```go ok := "npL6MjP8Qfc" //0x7fffffffffffffff bad1 := "npL6MjP8Qfd" //0x7fffffffffffffff + 1 // overflows int64...
When meetings end early, the task bar continues to show the past meeting until its scheduled end time, which blocks me from seeing when my next meeting starts. **Describe the...
- Adds encoding.TextUnmarshaler checking to support unmarshaling custom non-struct types. - Adds binding.BindUnmarshaler to support unmarshaling custom structs (from the suggestion in #2673) As of this PR you can support...
### What did this pull request do? Log parameterized queries instead of full sql queries that may contain sensitive information ### User Case Description See https://github.com/go-gorm/gorm/issues/5287 Closes https://github.com/go-gorm/gorm/issues/5287
## Summary - under load of more than one parallel connection, gorm is not reusing db connections and closing them immediately after each query, The `SetMaxIdleConns` value defaults to 2,...
infra version should return the arch build the server is running, to aid in debugging. This is very useful if running a cpu profile, as it's only readable against the...