HomeSort by relevance Sort by last modified time
    Searched refs:threading (Results 826 - 850 of 913) sorted by null

<<31323334353637

  /external/python/cpython2/Python/
ceval.c 301 PyObject *threading, *result; local
315 /* Update the threading module with the new state.
318 threading = PyMapping_GetItemString(tstate->interp->modules,
319 "threading");
320 if (threading == NULL) {
321 /* threading not imported */
325 result = PyObject_CallMethod(threading, "_after_fork", NULL);
327 PyErr_WriteUnraisable(threading);
330 Py_DECREF(threading);
    [all...]
  /external/python/cpython3/Lib/test/
test_enum.py 11 import threading
13 threading = None variable
    [all...]
test_subprocess.py 26 import threading
28 threading = None variable
    [all...]
  /external/python/cpython3/Python/
ceval.c 299 PyObject *threading, *result; local
309 /* Update the threading module with the new state.
311 threading = PyMapping_GetItemString(current_tstate->interp->modules,
312 "threading");
313 if (threading == NULL) {
314 /* threading not imported */
318 result = _PyObject_CallMethodId(threading, &PyId__after_fork, NULL);
320 PyErr_WriteUnraisable(threading);
323 Py_DECREF(threading);
    [all...]
  /external/tensorflow/tensorflow/python/training/
monitored_session_test.py 26 import threading
473 threading.Thread(
501 threading.Thread(
562 self._lock = threading.Lock()
563 self._stored_exception_event = threading.Event()
583 separate_thread = threading.Thread(
    [all...]
basic_session_run_hooks_test.py 25 import threading
    [all...]
  /external/python/cpython2/Lib/test/
test_multiprocessing.py 21 # import threading after _multiprocessing to raise a more relevant error
24 import threading
654 self.assertRaises((ValueError, threading.ThreadError), lock.release)
755 p = threading.Thread(target=self.f, args=(cond, sleeping, woken))
801 t = threading.Thread(target=self.f,
824 t = threading.Thread(target=self.f, args=(cond, sleeping, woken))
870 # work with threading._Event objects. is_set == isSet
873 # Removed, threading.Event.wait() will return the value of the __flag
    [all...]
  /external/tensorflow/tensorflow/python/client/
session_test.py 23 import threading
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multiprocessing.py 23 # import threading after _multiprocessing to raise a more relevant error
26 import threading
636 self.assertRaises((ValueError, threading.ThreadError), lock.release)
737 p = threading.Thread(target=self.f, args=(cond, sleeping, woken))
783 t = threading.Thread(target=self.f,
806 t = threading.Thread(target=self.f, args=(cond, sleeping, woken))
852 # work with threading._Event objects. is_set == isSet
855 # Removed, threading.Event.wait() will return the value of the __flag
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multiprocessing.py 23 # import threading after _multiprocessing to raise a more relevant error
26 import threading
636 self.assertRaises((ValueError, threading.ThreadError), lock.release)
737 p = threading.Thread(target=self.f, args=(cond, sleeping, woken))
783 t = threading.Thread(target=self.f,
806 t = threading.Thread(target=self.f, args=(cond, sleeping, woken))
852 # work with threading._Event objects. is_set == isSet
855 # Removed, threading.Event.wait() will return the value of the __flag
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 23 # import threading after _multiprocessing to raise a more relevant error
26 import threading
636 self.assertRaises((ValueError, threading.ThreadError), lock.release)
737 p = threading.Thread(target=self.f, args=(cond, sleeping, woken))
783 t = threading.Thread(target=self.f,
806 t = threading.Thread(target=self.f, args=(cond, sleeping, woken))
852 # work with threading._Event objects. is_set == isSet
855 # Removed, threading.Event.wait() will return the value of the __flag
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 23 # import threading after _multiprocessing to raise a more relevant error
26 import threading
636 self.assertRaises((ValueError, threading.ThreadError), lock.release)
737 p = threading.Thread(target=self.f, args=(cond, sleeping, woken))
783 t = threading.Thread(target=self.f,
806 t = threading.Thread(target=self.f, args=(cond, sleeping, woken))
852 # work with threading._Event objects. is_set == isSet
855 # Removed, threading.Event.wait() will return the value of the __flag
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Misc.py 21 import threading
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
BuildReport.py 29 import threading
621 EndOfProcedure = threading.Event()
624 StdErrThread = threading.Thread(target=ReadMessage, args=(PopenObject.stderr, EdkLogger.quiet, EndOfProcedure))
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_base_events.py 9 import threading
332 event = threading.Event()
336 thread = threading.Thread(target=check_in_thread, args=args)
    [all...]
  /external/python/cpython3/Lib/
zipfile.py 18 import threading
20 import dummy_threading as threading
    [all...]
  /external/python/cpython2/Lib/idlelib/
PyShell.py 12 import threading
524 threading.Thread(target=self.__request_interrupt).start()
    [all...]
  /external/python/cpython3/Lib/idlelib/
pyshell.py 29 import threading
506 threading.Thread(target=self.__request_interrupt).start()
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/python/
xla_client_test.py 22 import threading
    [all...]
  /external/tensorflow/tensorflow/python/data/ops/
dataset_ops.py 22 import threading
246 self._lock = threading.Lock()
    [all...]
  /external/tensorflow/tensorflow/python/debug/cli/
curses_ui_test.py 23 import threading
320 t = threading.Thread(target=child_thread)
    [all...]
  /external/tensorflow/tensorflow/python/kernel_tests/
reader_ops_test.py 25 import threading
    [all...]
  /external/tensorflow/tensorflow/python/ops/
data_flow_ops.py 23 import threading
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
PyShell.py 11 import threading
497 threading.Thread(target=self.__request_interrupt).start()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
PyShell.py 11 import threading
497 threading.Thread(target=self.__request_interrupt).start()
    [all...]

Completed in 1104 milliseconds

<<31323334353637