/third_party/skia/infra/bots/recipes/ |
D | upload_nano_results.py | 39 'nano-json-v1', str(now.year).zfill(4), 40 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
|
D | upload_buildstats_results.py | 40 'buildstats-json-v1', str(now.year).zfill(4), 41 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
|
D | upload_dm_results.py | 54 str(now.year ).zfill(4), 55 str(now.month).zfill(2), 56 str(now.day ).zfill(2), 57 str(now.hour ).zfill(2),
|
/third_party/flutter/skia/infra/bots/recipes/ |
D | upload_buildstats_results.py | 38 'buildstats-json-v1', str(now.year).zfill(4), 39 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
|
D | upload_nano_results.py | 37 'nano-json-v1', str(now.year).zfill(4), 38 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
|
D | upload_calmbench_results.py | 53 'calmbench-v1', str(now.year).zfill(4), 54 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
|
D | upload_dm_results.py | 52 str(now.year ).zfill(4), 53 str(now.month).zfill(2), 54 str(now.day ).zfill(2), 55 str(now.hour ).zfill(2),
|
/third_party/skia/platform_tools/android/tradefed/ |
D | upload_dm_results.py | 56 str(now.year ).zfill(4), 57 str(now.month).zfill(2), 58 str(now.day ).zfill(2), 59 str(now.hour ).zfill(2),
|
/third_party/skia/infra/bots/recipe_modules/gold_upload/ |
D | api.py | 46 str(now.year ).zfill(4), 47 str(now.month).zfill(2), 48 str(now.day ).zfill(2), 49 str(now.hour ).zfill(2),
|
/third_party/flutter/skia/platform_tools/android/tradefed/ |
D | upload_dm_results.py | 56 str(now.year ).zfill(4), 57 str(now.month).zfill(2), 58 str(now.day ).zfill(2), 59 str(now.hour ).zfill(2),
|
/third_party/mindspore/mindspore/profiler/parser/ |
D | hwts_log_parser.py | 89 byte_first = bin(byte_first_four[0]).replace('0b', '').zfill(8)
|
/third_party/mindspore/tests/ut/python/dataset/ |
D | test_datasets_flowers102.py | 53 …image_paths = [os.path.join(path, "jpg", "image_" + str(index).zfill(5) + ".jpg") for index in ind… 54 …segmentation_paths = [os.path.join(path, "segmim", "segmim_" + str(index).zfill(5) + ".jpg") for i…
|
/third_party/skia/tools/android/ |
D | upload_to_android.py | 132 str(mod).zfill(2), self.change_num, latest_patchset)
|
/third_party/flutter/skia/tools/android/ |
D | upload_to_android.py | 130 str(mod).zfill(2), self.change_num, latest_patchset)
|
/third_party/mindspore/mindspore/profiler/common/exceptions/ |
D | exceptions.py | 74 return hex(num)[2:].zfill(8).upper()
|
/third_party/boost/libs/metaparse/tools/ |
D | string_headers.py | 131 str(i).zfill(string_len) for i in
|
/third_party/python/Doc/tutorial/ |
D | inputoutput.rst | 246 There is another method, :meth:`str.zfill`, which pads a numeric string on the 249 >>> '12'.zfill(5) 251 >>> '-3.14'.zfill(7) 253 >>> '3.14159265359'.zfill(5)
|
/third_party/flutter/skia/third_party/externals/harfbuzz/test/shaping/ |
D | hb_test_tools.py | 48 padded_hex_str = hex(i)[2:].zfill(8)
|
/third_party/python/Lib/collections/ |
D | __init__.py | 1551 def zfill(self, width): member in UserString 1552 return self.__class__(self.data.zfill(width))
|
/third_party/python/Doc/whatsnew/ |
D | 2.3.rst | 1162 * Another new string method is :meth:`zfill`, originally a function in the 1163 :mod:`string` module. :meth:`zfill` pads a numeric string with zeros on the 1165 flexible and powerful than :meth:`zfill`. :: 1167 >>> '45'.zfill(4) 1169 >>> '12345'.zfill(4) 1171 >>> 'goofy'.zfill(6)
|
/third_party/python/Lib/xmlrpc/ |
D | client.py | 280 return value.strftime("%Y%m%dT%H:%M:%S").zfill(17)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | xcode_emulation.py | 1290 version[0] = version[0].zfill(2) # Add a leading zero if major is one digit
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | xcode_emulation.py | 1521 version[0] = version[0].zfill(2) # Add a leading zero if major is one digit
|
/third_party/mindspore/mindspore/dataset/engine/ |
D | datasets.py | 5871 …path = os.path.join(self.dataset_dir, "jpg", "image_" + str(self.indices[index]).zfill(5) + ".jpg") 5884 … os.path.join(self.dataset_dir, "segmim", "segmim_" + str(self.indices[index]).zfill(5) + ".jpg")
|
/third_party/python/Doc/library/ |
D | stdtypes.rst | 2195 .. method:: str.zfill(width) 2205 >>> "42".zfill(5) 2207 >>> "-42".zfill(5) 3409 .. method:: bytes.zfill(width) 3410 bytearray.zfill(width) 3420 >>> b"42".zfill(5) 3422 >>> b"-42".zfill(5)
|