Home
last modified time | relevance | path

Searched refs:_condition (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/concurrent/futures/
D_base.py151 future._condition.acquire()
155 future._condition.release()
194 with f._condition:
260 with f._condition:
309 with f._condition:
320 self._condition = threading.Condition()
335 with self._condition:
360 with self._condition:
368 self._condition.notify_all()
375 with self._condition:
[all …]
/third_party/jsframework/runtime/main/extend/mediaquery/
DpluginMediaQuery.ts29 private _condition: string; property in MediaQueryList
34 this._condition = condition;
48 return this._condition;
52 return this._condition;
/third_party/python/Lib/test/
Dtest_concurrent_futures.py1499 with f1._condition:
1502 f1._condition.notify_all()
/third_party/libuv/docs/src/guide/
Dthreads.rst148 .. _condition variables: https://en.wikipedia.org/wiki/Monitor_(synchronization)#Condition_variable…
/third_party/python/Doc/library/
Dthreading.rst614 .. _condition-objects: