/external/tensorflow/tensorflow/core/util/ |
D | events_writer_test.cc | 112 string file_prefix = GetDirName("/writeflush_test"); in TEST() local 113 EventsWriter writer(file_prefix); in TEST() 121 string file_prefix = GetDirName("/writeclose_test"); in TEST() local 122 EventsWriter writer(file_prefix); in TEST() 130 string file_prefix = GetDirName("/writedelete_test"); in TEST() local 131 EventsWriter* writer = new EventsWriter(file_prefix); in TEST() 139 string file_prefix = GetDirName("/failflush_test"); in TEST() local 140 EventsWriter writer(file_prefix); in TEST() 151 string file_prefix = GetDirName("/failclose_test"); in TEST() local 152 EventsWriter writer(file_prefix); in TEST() [all …]
|
D | events_writer.cc | 33 EventsWriter::EventsWriter(const string& file_prefix) in EventsWriter() argument 36 file_prefix_(file_prefix), in EventsWriter()
|
D | events_writer.h | 47 explicit EventsWriter(const string& file_prefix);
|
/external/freetype/src/tools/docmaker/ |
D | tohtml.py | 262 def __init__( self, processor, project_title, file_prefix ): argument 273 if file_prefix: 274 file_prefix = file_prefix + "-" 276 file_prefix = "" 280 self.file_prefix = file_prefix 284 + html_header_3l + file_prefix + "index.html" 285 + html_header_4 + file_prefix + "toc.html" 291 + html_header_3r + file_prefix + "toc.html" 297 + html_header_3l + file_prefix + "index.html" 308 return self.file_prefix + section.name + ".html" [all …]
|
/external/tensorflow/tensorflow/python/training/saving/ |
D | functional_saver.py | 76 def save(self, file_prefix): argument 96 file_prefix, tensor_names, tensor_slices, tensors)]): 97 return array_ops.identity(file_prefix) 99 def restore(self, file_prefix): argument 111 file_prefix, self._saveable_objects) 114 return array_ops.identity(file_prefix) 117 def restore_from_saveable_objects(file_prefix, saveable_objects): argument 130 file_prefix, tensor_names, tensor_slices, tensor_dtypes)
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | util.py | 901 file_prefix, argument 928 self._cached_save_operation = saver.save(file_prefix) 932 def save(self, file_prefix, checkpoint_number=None, session=None): argument 958 file_prefix = "%s-%d" % (file_prefix, checkpoint_number) 968 feed_dict[file_prefix_tensor] = file_prefix 972 file_prefix, dtype=dtypes.string) 975 file_io.recursive_create_dir(os.path.dirname(file_prefix)) 977 file_prefix=file_prefix_tensor, 1268 def write(self, file_prefix, session=None): argument 1291 file_prefix=file_prefix, [all …]
|
D | util_with_v1_optimizers_test.py | 210 save_path = root_trackable.save(file_prefix=prefix) 280 root.save(file_prefix=checkpoint_prefix) 309 root.save(file_prefix=checkpoint_prefix) 344 root.save(file_prefix=checkpoint_prefix) 381 root.save(file_prefix=checkpoint_prefix, session=session) 456 root.save(file_prefix=checkpoint_prefix) 684 model_save_path = root.save(file_prefix=checkpoint_prefix) 906 save_path = root.save(file_prefix=checkpoint_prefix) 918 save_path = root.save(file_prefix=checkpoint_prefix)
|
D | util_test.py | 417 save_path = root_trackable.save(file_prefix=prefix) 486 root.save(file_prefix=checkpoint_prefix) 525 root.save(file_prefix=checkpoint_prefix, session=session) 657 root.save(file_prefix=checkpoint_prefix) 1201 model_save_path = root.save(file_prefix=checkpoint_prefix) 1514 save_path = root.save(file_prefix=checkpoint_prefix) 1526 save_path = root.save(file_prefix=checkpoint_prefix)
|
/external/webrtc/webrtc/tools/barcode_tools/ |
D | barcode_decoder.py | 127 file_prefix = os.path.join(input_directory, 'frame_') 133 barcode_file_name = file_prefix + frame_number + '.txt' 134 png_frame = file_prefix + frame_number + '.png' 215 file_prefix = os.path.join(input_directory, 'frame_') 220 file_name = (file_prefix + helper_functions.zero_pad(num) + '.png')
|
D | helper_functions.py | 83 file_prefix = os.path.join(directory, file_pattern) 90 file_name = file_prefix + zero_padded_file_number + '.' + file_extension
|
/external/tensorflow/tensorflow/contrib/eager/python/ |
D | saver.py | 145 def save(self, file_prefix, global_step=None): argument 161 None, file_prefix, write_meta_graph=False, global_step=global_step) 163 def restore(self, file_prefix): argument 172 self._saver.restore(None, file_prefix)
|
/external/webrtc/webrtc/base/ |
D | filerotatingstream.cc | 27 const std::string& file_prefix) in FileRotatingStream() argument 28 : FileRotatingStream(dir_path, file_prefix, 0, 0, kRead) { in FileRotatingStream() 32 const std::string& file_prefix, in FileRotatingStream() argument 36 file_prefix, in FileRotatingStream() 45 const std::string& file_prefix, in FileRotatingStream() argument 50 file_prefix_(file_prefix), in FileRotatingStream()
|
D | filerotatingstream.h | 31 const std::string& file_prefix); 36 const std::string& file_prefix, 87 const std::string& file_prefix,
|
D | filerotatingstream_unittest.cc | 26 const std::string& file_prefix, in Init() argument 36 stream_.reset(new FileRotatingStream(dir_path_, file_prefix, max_file_size, in Init() 59 const char* file_prefix) { in VerifyStreamRead() argument 61 stream.reset(new FileRotatingStream(dir_path, file_prefix)); in VerifyStreamRead()
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.train.-checkpoint.pbtxt | 21 argspec: "args=[\'self\', \'file_prefix\'], varargs=None, keywords=None, defaults=None" 25 argspec: "args=[\'self\', \'file_prefix\'], varargs=None, keywords=None, defaults=None"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.train.-checkpoint.pbtxt | 21 …argspec: "args=[\'self\', \'file_prefix\', \'session\'], varargs=None, keywords=None, defaults=[\'… 25 …argspec: "args=[\'self\', \'file_prefix\', \'session\'], varargs=None, keywords=None, defaults=[\'…
|
/external/tensorflow/tensorflow/python/client/ |
D | events_writer_test.py | 36 file_prefix = os.path.join(self.get_temp_dir(), "events") 37 writer = pywrap_tensorflow.EventsWriter(compat.as_bytes(file_prefix))
|
/external/protobuf/benchmarks/ |
D | generate_datasets.cc | 43 const char *file_prefix = "dataset."; variable 83 std::string fname = file_prefix + name + file_suffix; in WriteFileWithPayloads()
|
/external/tensorflow/tensorflow/contrib/optimizer_v2/ |
D | checkpointable_utils_test.py | 228 save_path = root_trackable.save(file_prefix=prefix) 291 root.save(file_prefix=checkpoint_prefix) 325 root.save(file_prefix=checkpoint_prefix, session=session) 359 root.save(file_prefix=checkpoint_prefix) 403 root.save(file_prefix=checkpoint_prefix) 731 save_path = root.save(file_prefix=checkpoint_prefix) 743 save_path = root.save(file_prefix=checkpoint_prefix)
|
/external/autotest/client/site_tests/firmware_TouchMTB/tests/ |
D | validators_unittest.py | 339 file_prefix = 'one_finger_physical_click' 342 os.path.join(gesture_path, file_prefix + '*.dat'))] 345 file_prefix = 'two_fingers_physical_click' 348 os.path.join(gesture_path, file_prefix + '*.dat'))]
|
/external/perfetto/tools/trace_to_text/ |
D | trace_to_profile.cc | 92 const std::string& file_prefix) { in DumpProfilePacket() argument 266 std::string filename = file_prefix + std::to_string(pid) + ".pb"; in DumpProfilePacket()
|
/external/tensorflow/tensorflow/contrib/distribute/python/ |
D | checkpointing_test.py | 88 root.save(file_prefix=checkpoint_prefix)
|
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
D | iterator_checkpoint_test.py | 125 checkpoint.save(file_prefix=checkpoint_prefix)
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/l2hmc/ |
D | main.py | 100 file_prefix=os.path.join(FLAGS.train_dir, "ckpt"))
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/revnet/ |
D | main.py | 104 file_prefix=os.path.join(FLAGS.train_dir, "ckpt"))
|