Searched refs:uuid1 (Results 1 – 16 of 16) sorted by relevance
/third_party/e2fsprogs/lib/uuid/ |
D | compare.c | 45 struct uuid uuid1, uuid2; in uuid_compare() local 47 uuid_unpack(uu1, &uuid1); in uuid_compare() 50 UUCMP(uuid1.time_low, uuid2.time_low); in uuid_compare() 51 UUCMP(uuid1.time_mid, uuid2.time_mid); in uuid_compare() 52 UUCMP(uuid1.time_hi_and_version, uuid2.time_hi_and_version); in uuid_compare() 53 UUCMP(uuid1.clock_seq, uuid2.clock_seq); in uuid_compare() 54 return memcmp(uuid1.node, uuid2.node, 6); in uuid_compare()
|
/third_party/python/Lib/test/ |
D | test_uuid.py | 478 self.uuid.uuid1(node=node) 486 for u in [self.uuid.uuid1() for i in range(10)]: 495 for u in [self.uuid.uuid1() for i in range(1000)]: 500 u = self.uuid.uuid1(0) 502 u = self.uuid.uuid1(0x123456789abc) 504 u = self.uuid.uuid1(0xffffffffffff) 508 u = self.uuid.uuid1(0x123456789abc, 0) 511 u = self.uuid.uuid1(0x123456789abc, 0x1234) 515 u = self.uuid.uuid1(0x123456789abc, 0x3fff) 528 u = self.uuid.uuid1() [all …]
|
D | test_os.py | 2444 tagname = "test_os_%s" % uuid.uuid1()
|
/third_party/python/Doc/library/ |
D | uuid.rst | 14 and the functions :func:`uuid1`, :func:`uuid3`, :func:`uuid4`, :func:`uuid5` for 17 If all you want is a unique ID, you should probably call :func:`uuid1` or 18 :func:`uuid4`. Note that :func:`uuid1` may compromise privacy since it creates 22 Depending on support from the underlying platform, :func:`uuid1` may or may 176 .. function:: uuid1(node=None, clock_seq=None) 183 .. index:: single: uuid1 274 >>> uuid.uuid1()
|
/third_party/python/Tools/msi/ |
D | csv_to_wxs.py | 26 from uuid import uuid1 100 … <Component Id="{}__pycache__folders" Directory="TARGETDIR" Guid="{}">'.format(group, uuid1()))
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | _parameterized.py | 167 _SEPARATOR = uuid.uuid1().hex
|
/third_party/python/Lib/ |
D | uuid.py | 666 def uuid1(node=None, clock_seq=None): function
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0b5.rst | 207 Fixed :func:`uuid.uuid1` on FreeBSD.
|
D | 3.7.0b1.rst | 374 uuid.uuid1 no longer raises an exception if a 64-bit hardware address is
|
D | 3.6.5rc1.rst | 388 uuid.uuid1 no longer raises an exception if a 64-bit hardware address is
|
D | 3.7.0a3.rst | 332 ``uuid.uuid1()``. If only locally administered MAC addresses are available,
|
D | 3.8.0a1.rst | 2097 :func:`uuid.uuid1` now calls :func:`time.time_ns` rather than 4547 Fixed :func:`uuid.uuid1` on FreeBSD.
|
/third_party/python/Doc/whatsnew/ |
D | 2.5.rst | 1611 named :func:`uuid1`, :func:`uuid3`, :func:`uuid4`, and :func:`uuid5` to 1617 >>> uuid.uuid1()
|
D | 3.7.rst | 1566 from :func:`uuid.uuid1`. If only locally administered MAC addresses are
|
/third_party/mindspore/mindspore/dataset/engine/ |
D | datasets.py | 3168 self.queue_name = str(uuid.uuid1())
|
/third_party/python/Misc/ |
D | HISTORY | 3109 - Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with 16102 - Issue #4363: The uuid.uuid1() and uuid.uuid4() functions now work even if
|