pkg icon indicating copy to clipboard operation
pkg copied to clipboard

Common packages used by other repos.

Results 7 pkg issues
Sort by recently updated
recently updated
newest added

https://github.com/mosn/pkg/blob/e3528eae50d92595b3ea1e5bf75fa4f6aff9c43e/utils/goroutine.go#L41-L60 这里的 GoWithRecover 是不是拆成两个函数比较好,我在使用 errgroup 需要传入裸函数,这样拆分可以使用到 recover 机制,同时是否开启 goroutine 交给用户决定。 ```go func GoWithRecover(handler func(), recoverHandler func(r interface{})) { go func() { WithRecover(handler, recoverHandler) }() } func WithRecover(handler func(), recoverHandler func(r...

Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20220227234510-4e6760a101f9 to 0.1.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=golang.org/x/sys&package-manager=go_modules&previous-version=0.0.0-20220227234510-4e6760a101f9&new-version=0.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: #...

dependencies

seata重构需升级go.uuid与go-zookeeper版本 https://github.com/mosn/mosn/issues/2094

First-time contributor
size/M
cla:no

fasthttp implements trailing headers as a part of the http request and response headers objects. To ensure we can use these without relying on fasthttp API, we need a few...

通过 InitGlobalRoller 更新 roller 从 log.Roller{MaxTime: 24 * 60 * 60} 到 log.Roller{MaxSize: 100, MaxAge: 7, MaxBackups: 10} 发生 panic。 目前只支持:修改 MaxSize 字段吗?而且 MaxSize 这个字段不可以修改为0。

Bufferchain is added for http2 stream and Iobuffer is implemented