Yz
Yz
**Describe the bug** `router.APIContainer.RegisterDependency` only works with specific registration sequence. **To Reproduce** 1. In `main.go` ```go package main import ( "github.com/kataras/iris/v12" ) func main() { app := iris.Default() app.ConfigureContainer(func(api *iris.APIContainer)...
**Describe the bug** The following code will produce panic. ```go package main import ( "github.com/kataras/iris/v12" ) func main() { app := iris.Default() app.ConfigureContainer(func(api *iris.APIContainer) { api.RegisterDependency(func() float64 { return float64(1)...
- [x] I have looked at the documentation [here](https://pkg.go.dev/github.com/go-playground/validator/v10#section-documentation) first? - [x] I have looked at the examples provided that may showcase my question [here](/_examples)? ### Package version eg. v9,...
### Describe the bug ```markdown [Title ](./article.md) ``` https://github.com/benbalter/jekyll-relative-links/blob/3765d2883266e498baea36f32e8137a636751908/lib/jekyll-relative-links/generator.rb#L53 ```ruby link_type, link_text, relative_path, fragment = link_parts(Regexp.last_match) # link_type: "inline" # link_text: "Title ![badge" # relative_path: "https://example.com/badge.png" ``` ### Steps to...
Support any types of value in prepared mode (issue #313 )
**Describe the bug** A clear and concise description of what the bug is. While using prepared statement, columns are not encoding to SQL string. But it's returning encoding error for...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] If I want to...
### Proposed change IMHO, there're something we can improve in these [lines of code](https://github.com/nats-io/nats.go/blob/8712190da1d17ab0c4719bffa7c0174214c56e6c/jetstream/pull.go#L770-L772). https://github.com/nats-io/nats.go/blob/8712190da1d17ab0c4719bffa7c0174214c56e6c/jetstream/pull.go#L770-L772 1. In batch request, it'll create a lot of `time.Timer` according to [the doc](https://pkg.go.dev/time#After). Before...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] As title, support the...
**Actual behavior** A clear and concise description of what the bug is. Same issue from `github.com/golang/mock` https://github.com/golang/mock/issues/677. Interface: ```go package mypkg type S struct{} type GS[T any] struct { T...