donnol

Results 12 issues of donnol

`github.com/go-kit/[email protected]: verifying module: github.com/go-kit/[email protected]: reading https://goproxy.io/sumdb/sum.golang.org/tile/8/0/x003/099: http2: server sent GOAWAY and closed the connection; LastStreamID=1999, ErrCode=NO_ERROR, debug=""` I got the error when I run `go mod download`.

the Iterator code is like that: ```go iter := lr.db.NewIterator(&util.Range{Start: []byte("/")}, &opt.ReadOptions{}) for iter.Next() { key := iter.Key() value := iter.Value() nv, err := getValue(value) if err != nil {...

是直接传db进去,还是怎样呢?

```go func newConnection(d *driver) (*connection, error) { c := &connection{} c.close() conn, err := net.Dial("tcp", fmt.Sprintf("%s:%d", d.Host, d.Port)) if err != nil { return nil, err } c.closed = false...

bug

**Is your feature request related to a problem? Please describe.** When I use maroto to generate a pdf contains Chinese, the Table auto adjust height is not work. I use...

```go type User struct { Id int // unique value in this struct, like: 1. Age int // unique value in this struct, other value except 1, like: 2. Name...

enhancement

**Steps to Reproduce** [playground](https://go.dev/play/p/2y55se9MyGd) ```go //go:build ignore package main import ( "log" "github.com/gorilla/schema" ) type Page struct { Page int `schema:"page"` PageSize int `schema:"pageSize"` } type PageAlias struct { Page...

bug

When we use some method like `GroupBy`, we pass an `iteratee function`, which could come to panic. I proposal to add a defer recover to catch the exception. So the...

### The following program `sample.go` triggers an unexpected result ```go package main import ( "fmt" "testing" "github.com/traefik/yaegi/interp" ) func TestYaegi(t *testing.T) { const src = `package main func Sum(a, b...

like: ```go type Code struct { Text string `xml:",innerxml"` } ```