MCPcopy Create free account
hub / github.com/imgproxy/imgproxy / Write

Method Write

logger/buffer.go:27–30  ·  view source on GitHub ↗

Write writes data to the buffer.

(p []byte)

Source from the content-addressed store, hash-verified

25
26// Write writes data to the buffer.
27func (b *buffer) Write(p []byte) (n int, err error) {
28 b.append(p...)
29 return len(p), nil
30}
31
32// String returns the contents of the buffer as a string.
33func (b *buffer) String() string {

Callers 15

HandleMethod · 0.45
writeErrorMethod · 0.45
DumpMethod · 0.45
DumpMethod · 0.45
DumpMethod · 0.45
dumpDctHashMethod · 0.45
startMethod · 0.45
ExecuteMethod · 0.45
ExecuteMethod · 0.45

Calls 1

appendMethod · 0.95