Lines Matching defs:random
9 the computer's network address. uuid4() creates a random UUID.
23 # make a random UUID
608 """Get a random node ID."""
619 import random
620 return random.getrandbits(48) | (1 << 40)
655 choose a random 48-bit number with its eighth bit set to 1 as recommended
678 otherwise a random 14-bit sequence number is chosen."""
700 import random
701 clock_seq = random.getrandbits(14) # instead of stable storage
722 """Generate a random UUID."""