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

<<31323334353637

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 389 # is not available, use threading.currentThread() which is slower but will
391 # mock threading object with threading.local() returning the module namespace.
394 import threading
401 threading = MockThreading() variable in class:Underflow
405 threading.local
411 if hasattr(threading.currentThread(), '__decimal_context__'):
412 del threading.currentThread().__decimal_context__
419 threading.currentThread().__decimal_context__ = context
429 return threading.currentThread().__decimal_context_
    [all...]
subprocess.py 417 import threading
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 389 # is not available, use threading.currentThread() which is slower but will
391 # mock threading object with threading.local() returning the module namespace.
394 import threading
401 threading = MockThreading() variable in class:Underflow
405 threading.local
411 if hasattr(threading.currentThread(), '__decimal_context__'):
412 del threading.currentThread().__decimal_context__
419 threading.currentThread().__decimal_context__ = context
429 return threading.currentThread().__decimal_context_
    [all...]
subprocess.py 417 import threading
    [all...]
  /external/python/cpython2/Lib/test/
test_io.py 46 import threading
48 threading = None variable
    [all...]
test_subprocess.py 18 import threading
20 threading = None variable
647 @unittest.skipIf(threading is None, "threading required")
655 t = threading.Thread(target=open_fds)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_io.py 45 import threading
47 threading = None variable
895 @unittest.skipUnless(threading, 'Threading required for this test.')
924 threads = [threading.Thread(target=f) for x in range(20)]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_io.py 45 import threading
47 threading = None variable
895 @unittest.skipUnless(threading, 'Threading required for this test.')
924 threads = [threading.Thread(target=f) for x in range(20)]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_io.py 45 import threading
47 threading = None variable
895 @unittest.skipUnless(threading, 'Threading required for this test.')
924 threads = [threading.Thread(target=f) for x in range(20)]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_io.py 45 import threading
47 threading = None variable
895 @unittest.skipUnless(threading, 'Threading required for this test.')
924 threads = [threading.Thread(target=f) for x in range(20)]
    [all...]
  /external/chromium-trace/catapult/third_party/pyserial/serial/
rfc2217.py 66 import threading
396 self._write_lock = threading.Lock()
432 self._thread = threading.Thread(target=self._telnetReadLoop)
    [all...]
  /external/python/cpython2/Lib/
subprocess.py 60 import threading
704 stdout_thread = threading.Thread(target=self._readerthread,
710 stderr_thread = threading.Thread(target=self._readerthread,
    [all...]
  /external/python/cpython3/Lib/test/
_test_multiprocessing.py 29 # import threading after _multiprocessing to raise a more relevant error
32 import threading
765 self.assertRaises((ValueError, threading.ThreadError), lock.release)
866 p = threading.Thread(target=self.f, args=(cond, sleeping, woken))
912 t = threading.Thread(target=self.f,
935 t = threading.Thread(target=self.f, args=(cond, sleeping, woken))
1085 # work with threading._Event objects. is_set == isSet
1088 # Removed, threading.Event.wait() will return the value of the __flag
    [all...]
test_imaplib.py 3 # threading, this test module should be split. Right now we skip
4 # them all if we don't have threading.
5 threading = support.import_module('threading') variable
200 self.thread = threading.Thread(
530 t = threading.Thread(
    [all...]
test_pydoc.py 35 import threading
37 threading = None variable
    [all...]
test_bz2.py 18 import threading
20 threading = None variable
495 @unittest.skipUnless(threading, 'Threading required for this test.')
504 threads = [threading.Thread(target=comp) for i in range(nthreads)]
509 module = support.import_fresh_module("bz2", blocked=("threading",))
    [all...]
test_httpservers.py 26 threading = support.import_module('threading') variable
37 class TestServerThread(threading.Thread):
39 threading.Thread.__init__(self)
61 self.server_started = threading.Event()
    [all...]
test_nntplib.py 18 import threading
20 threading = None variable
    [all...]
  /external/tensorflow/tensorflow/python/client/
session.py 23 import threading
600 self._extend_lock = threading.Lock()
609 self._delete_lock = threading.Lock()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
subprocess.py 417 import threading
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
subprocess.py 417 import threading
    [all...]
  /build/make/tools/releasetools/
common.py 32 import threading
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
build.py 31 from threading import *
438 _PendingQueueLock = threading.Lock()
442 _ReadyQueueLock = threading.Lock()
446 _RunningQueueLock = threading.Lock()
452 _ErrorFlag = threading.Event()
460 _SchedulerStopped = threading.Event()
542 EdkLogger.debug(EdkLogger.DEBUG_8, "Threads [%s]" % ", ".join([Th.getName() for Th in threading.enumerate()]))
582 # use threading.Event to communicate this formation to main thread.
684 (threading.currentThread().getName(), Command, WorkingDir)
    [all...]
  /external/devlib/devlib/utils/
android.py 28 import threading
  /external/swiftshader/third_party/LLVM/utils/
llvmbuild 115 import threading
296 class Builder(threading.Thread):

Completed in 2244 milliseconds

<<31323334353637