Lines Matching defs:threading
11 import threading
1397 # (this arises in recursive calls and in multi-threading).
1649 start = threading.Event()
1664 threads = [threading.Thread(target=full, args=[k])
1680 threads = [threading.Thread(target=clear)]
1681 threads += [threading.Thread(target=full, args=[k])
1693 start = threading.Barrier(n+1)
1694 pause = threading.Barrier(n+1)
1695 stop = threading.Barrier(n+1)
1706 threads = [threading.Thread(target=test) for k in range(n)]
1726 threads = [threading.Thread(target=test, args=(i, v))
2965 go = threading.Event()
2974 threading.Thread(target=lambda: item.cost)