nickajacks1
nickajacks1
When you say rate limit, do you mean GitHub API rate limit, or is there some other limit? `hermit install` doesn't make any API calls does it? > I'm not...
Any chance this will get traction?
JFrog recommends switching to the JFrog Jenkins plugin, which is a simple wrapper around the JFrog CLI tool. We have done so, and I'd recommend it too, since it's more...
@Antonboom `recover()` returns the value passed to `panic()`, so you can check that to conditionally set `result` to true. https://go.dev/blog/defer-panic-and-recover ```go defer func() { if r := recover(); r !=...
I think I understand now. If fn panics, the assignment in the original code is technically used. I'm not really familiar with Go's AST, but this sounds complex to statically...
Good idea, I'll look into that and report back here.
This is happening to us in some form that is potentially different than OP's (not sure). When a Pull Request is closed (and maybe when a branch is deleted, haven't...
This requires cgo, which would be a real shame to force on users. If it's included in fiber, I think it should be an optional addon.
I see two main pieces to this proposal. 1. Adding handler functions that take the request body as a struct parameter and return a struct as the response body. 2....
I would like to work on this. What would be a good way to reproduce this beside waiting for the next autoversion?