Searched refs:uuid4 (Results 1 - 8 of 8) sorted by relevance
/third_party/node/deps/v8/gni/ |
H A D | protoc.py | 29 tmp_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4()))
|
/third_party/skia/third_party/externals/angle2/scripts/ |
H A D | process_angle_perf_results.py | 172 return name_prefix + '_' + str(uuid.uuid4()) 493 summary_key_guid = str(uuid.uuid4()) 565 output_json_file = os.path.join(output_results_dir, (str(uuid.uuid4()) + benchmark_name))
|
/third_party/protobuf/benchmarks/util/ |
H A D | result_uploader.py | 65 row = big_query_utils.make_row(str(uuid.uuid4()), new_result)
|
/third_party/skia/infra/bots/ |
H A D | test_utils.py | 34 f.write(str(uuid.uuid4()))
|
H A D | utils.py | 105 self._branch = '_tmp_%s' % uuid.uuid4()
|
/third_party/python/Lib/test/ |
H A D | test_uuid.py | 621 # Make sure uuid4() generates UUIDs that are actually version 4. 622 for u in [self.uuid.uuid4() for i in range(10)]: 628 for u in [self.uuid.uuid4() for i in range(1000)]: 652 # On at least some versions of OSX self.uuid.uuid4 generates 659 value = self.uuid.uuid4() 666 parent_value = self.uuid.uuid4().hex 674 strong = self.uuid.uuid4()
|
H A D | test_os.py | 3143 self.key = str(uuid.uuid4())
|
/third_party/python/Lib/ |
H A D | uuid.py | 4 uuid1(), uuid3(), uuid4(), uuid5() for generating version 1, 3, 4, and 5 7 If all you want is a unique ID, you should probably call uuid1() or uuid4(). 9 the computer's network address. uuid4() creates a random UUID. 24 >>> uuid.uuid4() # doctest: +SKIP 721 def uuid4(): function
|
Completed in 10 milliseconds