MCPcopy Create free account
hub / github.com/dmlc/parameter_server / readLine

Method readLine

src/util/file.cc:152–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

150}
151
152char* File::readLine(char* const output, uint64 max_length) {
153 return (is_gz_ ? gzgets(gz_f_, output, max_length) : fgets(output, max_length, f_));
154}
155
156bool File::seek(size_t position) {
157 return (is_gz_ ?

Callers 3

readMatricesFromTextMethod · 0.80
readKeyFromFileFunction · 0.80
ReloadMethod · 0.80

Calls

no outgoing calls

Tested by 1

readKeyFromFileFunction · 0.64