MCPcopy Index your code
hub / github.com/FunctionStream/function-stream / Write

Method Write

fs/runtime/wazero/fs.go:61–65  ·  view source on GitHub ↗
(buf []byte)

Source from the content-addressed store, hash-verified

59}
60
61func (f *memoryFile) Write(buf []byte) (n int, errno Errno) {
62 n, _ = f.writeBuf.Write(buf)
63 errno = 0
64 return
65}
66
67func (f *memoryFile) IsDir() (bool, Errno) {
68 return f.isDir, 0

Callers 7

TestFunctionStoreLoadingFunction · 0.45
makeStateServiceMethod · 0.45
makeTubeServiceMethod · 0.45
NewFunctionRuntimeMethod · 0.45
prepareRequestMethod · 0.45
decodeMethod · 0.45
setBodyFunction · 0.45

Calls

no outgoing calls

Tested by 1

TestFunctionStoreLoadingFunction · 0.36