Searched refs:fromtimestamp (Results 1 - 15 of 15) sorted by relevance
/third_party/node/deps/v8/tools/release/ |
H A D | list_deprecated.py | 79 current_blame['datetime'] = datetime.fromtimestamp( 146 commit_datetime = datetime.fromtimestamp(int(commit_datetime))
|
/third_party/python/Tools/scripts/ |
H A D | diff.py | 15 t = datetime.fromtimestamp(os.stat(path).st_mtime,
|
/third_party/spirv-tools/utils/ |
H A D | update_build_version.py | 134 iso_date = datetime.datetime.fromtimestamp(timestamp, datetime.timezone.utc).isoformat()
|
/third_party/python/Lib/test/ |
H A D | datetimetester.py | 1315 d = self.theclass.fromtimestamp(ts) 1326 self.assertRaises(OverflowError, self.theclass.fromtimestamp, 1332 # We claim that today() is like fromtimestamp(time.time()), so 1337 todayagain = self.theclass.fromtimestamp(ts) 1766 ('fromtimestamp', (ts,)), 2424 got = self.theclass.fromtimestamp(ts) 2447 self.assertEqual(self.theclass.fromtimestamp(t1.timestamp()), 2449 self.assertEqual(self.theclass.fromtimestamp(t0.timestamp()), 2453 self.assertEqual(self.theclass.fromtimestamp(t.timestamp()), t) 2463 self.assertEqual(self.theclass.fromtimestamp( [all...] |
H A D | test_imaplib.py | 58 datetime.fromtimestamp(2000000000,
|
H A D | test_httpservers.py | 372 last_modif = datetime.datetime.fromtimestamp(mtime,
|
/third_party/python/Lib/email/ |
H A D | utils.py | 147 dt = datetime.datetime.fromtimestamp(timeval, datetime.timezone.utc)
|
/third_party/mbedtls/scripts/ |
H A D | assemble_changelog.py | 359 return datetime.datetime.fromtimestamp(mtime)
|
/third_party/json/tools/serve_header/ |
H A D | serve_header.py | 109 t = datetime.fromtimestamp(t)
|
/third_party/node/deps/v8/tools/testrunner/testproc/ |
H A D | progress.py | 209 st = datetime.datetime.fromtimestamp(dt).strftime('%Y-%m-%d %H:%M:%S')
|
/third_party/python/Lib/ |
H A D | datetime.py | 899 fromtimestamp() 958 def fromtimestamp(cls, t): member in date 967 return cls.fromtimestamp(t) 1787 def fromtimestamp(cls, t, tz=None): member in datetime 1805 return cls.fromtimestamp(t, tz)
|
H A D | imaplib.py | 1517 dt = datetime.fromtimestamp(date_time,
|
/third_party/python/Lib/http/ |
H A D | server.py | 754 last_modif = datetime.datetime.fromtimestamp(
|
/third_party/node/deps/v8/tools/ |
H A D | grokdump.py | 2851 dt = datetime.datetime.fromtimestamp(self.reader.header.time_date_stampt) 2898 time_date_stamp = datetime.datetime.fromtimestamp(module.time_date_stamp) 3479 f.write(datetime.datetime.fromtimestamp(mtime)) 3894 time_date_stamp = datetime.datetime.fromtimestamp(module.time_date_stamp)
|
/third_party/python/Modules/ |
H A D | _datetimemodule.c | 2968 * We say this is equivalent to fromtimestamp(time.time()), and the 2977 _Py_IDENTIFIER(fromtimestamp); in date_today() 2984 * date.fromtimestamp. For example, it may call in date_today() 2985 * datetime.fromtimestamp. That's why we need all the accuracy in date_today() 2996 datetime.date.fromtimestamp 3024 if (PyArg_UnpackTuple(args, "fromtimestamp", 1, 1, ×tamp)) { in datetime_date_fromtimestamp_capi() 3578 "self.__class__.fromtimestamp(time.time()).")}, 5188 if (! PyArg_ParseTupleAndKeywords(args, kw, "O|O:fromtimestamp", in datetime_fromtimestamp() 6532 {"fromtimestamp", _PyCFunction_CAST(datetime_fromtimestamp),
|
Completed in 33 milliseconds