MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / write

Method write

tools/server/server-models.cpp:1095–1103  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1093 }
1094 }
1095 bool write(T && data) {
1096 std::lock_guard<std::mutex> lk(mutex);
1097 if (reader_closed.load()) {
1098 return false; // broken pipe
1099 }
1100 queue.push(std::move(data));
1101 cv.notify_one();
1102 return true;
1103 }
1104};
1105
1106static std::string to_lower_copy(const std::string & value) {

Callers 15

zerosFunction · 0.45
run_mergeMethod · 0.45
copy_tensorMethod · 0.45
merge_tensorMethod · 0.45
clip_image_save_to_bmpFunction · 0.45
llava_surgery.pyFile · 0.45
glmedge-surgery.pyFile · 0.45
save_wav16Function · 0.45
save_wavFunction · 0.45
process_logitsFunction · 0.45

Calls 2

loadMethod · 0.45
pushMethod · 0.45

Tested by

no test coverage detected