(name)
| 14345 | const buffer = stream.peek(); |
| 14346 | const tensor_dir_path = tensor_prefix ? tensor_prefix : `${archive_name}/`; |
| 14347 | const read_record = (name) => { |
| 14348 | const stream = stream_reader.get_record(tensor_dir_path + name); |
| 14349 | return stream.length <= 0x40000 ? stream.peek() : stream; |
| 14350 | }; |
| 14351 | const execution = this._compilation_unit.execution; |
| 14352 | const pickle = execution.__import__('pickle'); |
| 14353 | const Unpickler = class extends pickle.Unpickler { |
nothing calls this directly
no test coverage detected