MCPcopy
hub / github.com/zalando/skipper / Write

Method Write

proxy/proxy.go:576–582  ·  view source on GitHub ↗
(p []byte)

Source from the content-addressed store, hash-verified

574)
575
576func (f *flusher) Write(p []byte) (n int, err error) {
577 n, err = f.w.Write(p)
578 if err == nil {
579 f.w.Flush()
580 }
581 return
582}
583
584var bufPool = sync.Pool{
585 New: func() any {

Calls 1

FlushMethod · 0.65