Home | History | Annotate | Download | only in test

Lines Matching full:10000

120         trials = 10000  # large num prevents false negatives without slowing normal case
513 seed = (1 << (10000 * 8)) - 1 # about 10K bytes
639 a = self.gen.choices(range(n), k=10000)
642 b = self.gen.choices(range(n), [1]*n, k=10000)
646 c = self.gen.choices(range(n), cum_weights=range(1, n+1), k=10000)
656 a = self.gen.choices(expanded_population, k=10000)
659 b = self.gen.choices(population, weights, k=10000)
663 c = self.gen.choices(population, cum_weights=cum_weights, k=10000)