• Facebook
  • Twitter
  • Reddit
  • StumbleUpon
  • Digg
  • email

All Samples(23)  |  Call(0)  |  Derive(18)  |  Import(5)
No Document.

src/t/h/threading2-0.1.4/threading2/t2_base.py   threading2(Download)
 
import threading2
from threading import *
from threading import _RLock,_Event,_Condition,_Semaphore,_BoundedSemaphore, \
                      _Timer,ThreadError,_time,_sleep,_get_ident,_allocate_lock
 
 
class Condition(_Condition):
    """Re-implemented Condition class.
 
    This is pretty much a direct clone of the Condition class from the standard
    threading module; the only difference is that it uses a custom Lock class
    so that acquire() has a "timeout" parameter.
    """

src/b/i/biskit-HEAD/trunk/Biskit/PVM/TrackingJobMaster.py   biskit(Download)
from Biskit.PVM.Status import Status
import Biskit.tools as T
 
from threading import Thread, RLock, _RLock, Condition, _Condition
import time
import copy
 

src/b/i/biskit-HEAD/Biskit/PVM/TrackingJobMaster.py   biskit(Download)
from Biskit.PVM.Status import Status
import Biskit.tools as T
 
from threading import Thread, RLock, _RLock, Condition, _Condition
import time
import copy
 

src/a/s/async-0.6.1/util.py   async(Download)
"""Module with utilities related to async operations"""
 
from threading import (
	Lock,
	_allocate_lock,
	_Condition, 
	_sleep,

src/i/r/ironruby-HEAD/External.LCA_RESTRICTED/Languages/IronPython/27/Lib/multiprocessing/dummy/__init__.py   ironruby(Download)
class Condition(threading._Condition):
    notify_all = threading._Condition.notify_all.im_func
 
#
#
#
 

src/i/r/ironruby-HEAD/External.LCA_RESTRICTED/Languages/CPython/27/Lib/multiprocessing/dummy/__init__.py   ironruby(Download)
class Condition(threading._Condition):
    notify_all = threading._Condition.notify_all.im_func
 
#
#
#
 

src/p/y/pypy3-HEAD/lib-python/3.1.2/multiprocessing/dummy/__init__.py   pypy3(Download)
class Condition(threading._Condition):
    # XXX
    if sys.version_info < (3, 0):
        notify_all = threading._Condition.notify_all.__func__
    else:
        notify_all = threading._Condition.notify_all
 

src/p/y/python2.6-cmake-HEAD/Lib/multiprocessing/dummy/__init__.py   python2.6-cmake(Download)
class Condition(threading._Condition):
    notify_all = threading._Condition.notify_all.im_func
 
#
#
#
 

src/p/y/pywii-HEAD/Python-3.1.2/Lib/multiprocessing/dummy/__init__.py   pywii(Download)
class Condition(threading._Condition):
    # XXX
    if sys.version_info < (3, 0):
        notify_all = threading._Condition.notify_all.__func__
    else:
        notify_all = threading._Condition.notify_all
 

src/s/l/SlopPy-HEAD/Lib/multiprocessing/dummy/__init__.py   SlopPy(Download)
class Condition(threading._Condition):
    notify_all = threading._Condition.notify_all.im_func
 
#
#
#
 

  1 | 2 | 3  Next