OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mtimes
(Results
1 - 4
of
4
) sorted by null
/external/tensorflow/tensorflow/python/training/
checkpoint_management.py
382
instructions="Use standard file utilities to get
mtimes
.")
385
"""Returns the
mtimes
(modification timestamps) of the checkpoints.
391
This is the recommended way to get the
mtimes
, since it takes into account
399
A list of
mtimes
(in microseconds) of the found checkpoints.
401
mtimes
= []
406
mtimes
.append(file_io.stat(fnames[0]).mtime_nsec / 1e9)
419
return
mtimes
checkpoint_management_test.py
305
mtimes
= checkpoint_management.get_checkpoint_mtimes(prefixes)
306
self.assertEqual(2, len(
mtimes
))
307
self.assertTrue(
mtimes
[1] >=
mtimes
[0])
saver.py
[
all
...]
/external/python/cpython2/Lib/test/
test_import.py
365
mtimes
= 1325376000, 1341100800
369
for mtime, tail in zip(
mtimes
, tails):
Completed in 196 milliseconds