MCPcopy Create free account
hub / github.com/PABannier/bark.cpp / write

Method write

examples/server/httplib.h:5279–5281  ·  view source on GitHub ↗

Stream implementation

Source from the content-addressed store, hash-verified

5277
5278// Stream implementation
5279inline ssize_t Stream::write(const char *ptr) {
5280 return write(ptr, strlen(ptr));
5281}
5282
5283inline ssize_t Stream::write(const std::string &s) {
5284 return write(s.data(), s.size());

Callers 15

write_safeFunction · 0.80
ggml_quantize_weightsFunction · 0.80
bark_model_quantizeFunction · 0.80
parse_codec_hparamsFunction · 0.80
parse_hparamsFunction · 0.80
parse_model_weightsFunction · 0.80
generate_fileFunction · 0.80
generate_vocab_fileFunction · 0.80
convert.pyFile · 0.80
write_safeFunction · 0.80
ggml_quantize_weightsFunction · 0.80

Calls 4

send_socketFunction · 0.85
dataMethod · 0.80
appendMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected