MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / parse_file

Function parse_file

src/framework/io/json.cpp:306–308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

304 return number_value_;
305}
306
307int64_t Value::as_i64() const {
308 const double value = as_number();
309 if (!std::isfinite(value) || std::floor(value) != value) {
310 throw std::runtime_error("json number is not an integer");
311 }

Callers 15

load_vocab_jsonFunction · 0.85
ImplMethod · 0.85
parse_jsonMethod · 0.85
load_tokenizer_jsonFunction · 0.85
load_special_tokensFunction · 0.85
parse_bigvgan_configFunction · 0.85
parse_hift_configFunction · 0.85
load_configFunction · 0.85
parse_manifestFunction · 0.85

Calls 2

parseFunction · 0.85
read_text_fileFunction · 0.70

Tested by

no test coverage detected