David Cuadrado
David Cuadrado
I'm getting this error: ``` output/output.go:11:2: github.com/deepfence/[email protected] (replaced by ./agent-plugins-grpc): reading agent-plugins-grpc/go.mod: open /go/src/github.com/deepfence/SecretScanner/agent-plugins-grpc/go.mod: no such file or directory ```
**Is your feature request related to a problem? Please describe.** Support for Go would be nice **Describe the solution you'd like** `-tech go`
The proper way to get the width and height of the image is using Bounds().Max
it should be documented
Especially explaining the configuration options
To make development and adding new features easier
example: ```go package p import "io" // CloseSilently ... func CloseSilently(c io.Closer) { _ = c.Close() } ``` ```go package main import ( "net/http" "p" ) func main() { resp,...
```go package main import ( "net/http" ) type myCloser interface { Close() error } func closeBody(c myCloser) { _ = c.Close() } func main() { resp, _ := http.Get("https://example.com") defer...
In our case we want to display the endpoints to create the resource first and by default apicurio is putting them at the end.
### What are you trying to do? I'm trying to write an array in a dataset, what I do is reading it, applying some operations to the data and then...