Files
wehub-resource-sync e071084ebe
govulncheck / govulncheck (push) Waiting to run
Harness (E2E) / Harnesses (mock LLM) (push) Waiting to run
Harness (E2E) / Provider harnesses (live LLM conformance) (push) Waiting to run
Lint / golangci-lint (push) Waiting to run
Run Tests / Unit Tests (push) Waiting to run
Run Tests / Etcd Integration Tests (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 12:40:33 +08:00

15 lines
212 B
Go

package transport
import "sync"
var http2BufPool = sync.Pool{
New: func() interface{} {
buf := make([]byte, DefaultBufSizeH2)
return &buf
},
}
func getHTTP2BufPool() *sync.Pool {
return &http2BufPool
}