當前位置: 首頁>>代碼示例>>Python>>正文


Python dummy_thread.allocate_lock方法代碼示例

本文整理匯總了Python中dummy_thread.allocate_lock方法的典型用法代碼示例。如果您正苦於以下問題:Python dummy_thread.allocate_lock方法的具體用法?Python dummy_thread.allocate_lock怎麽用?Python dummy_thread.allocate_lock使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在dummy_thread的用法示例。


在下文中一共展示了dummy_thread.allocate_lock方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: import dummy_thread [as 別名]
# 或者: from dummy_thread import allocate_lock [as 別名]
def __init__(self, application, environ=None,
                 multithreaded=True, **kw):
        """
        environ, if present, must be a dictionary-like object. Its
        contents will be copied into application's environ. Useful
        for passing application-specific variables.

        Set multithreaded to False if your application is not MT-safe.
        """
        if kw.has_key('handler'):
            del kw['handler'] # Doesn't make sense to let this through
        super(WSGIServer, self).__init__(**kw)

        if environ is None:
            environ = {}

        self.application = application
        self.environ = environ
        self.multithreaded = multithreaded

        # Used to force single-threadedness
        self._app_lock = thread.allocate_lock() 
開發者ID:uwdata,項目名稱:termite-visualizations,代碼行數:24,代碼來源:fcgi.py

示例2: allocate_lock

# 需要導入模塊: import dummy_thread [as 別名]
# 或者: from dummy_thread import allocate_lock [as 別名]
def allocate_lock():
    """Dummy implementation of thread.allocate_lock()."""
    return LockType() 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:5,代碼來源:dummy_thread.py

示例3: __init__

# 需要導入模塊: import dummy_thread [as 別名]
# 或者: from dummy_thread import allocate_lock [as 別名]
def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):
        """Create a new buffered reader using the given readable raw IO object.
        """
        if not raw.readable():
            raise IOError('"raw" argument must be readable.')

        _BufferedIOMixin.__init__(self, raw)
        if buffer_size <= 0:
            raise ValueError("invalid buffer size")
        self.buffer_size = buffer_size
        self._reset_read_buf()
        self._read_lock = Lock() 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:14,代碼來源:_pyio.py

示例4: setUp

# 需要導入模塊: import dummy_thread [as 別名]
# 或者: from dummy_thread import allocate_lock [as 別名]
def setUp(self):
        # Create a lock
        self.lock = _thread.allocate_lock() 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:5,代碼來源:test_dummy_thread.py

示例5: test_LockType

# 需要導入模塊: import dummy_thread [as 別名]
# 或者: from dummy_thread import allocate_lock [as 別名]
def test_LockType(self):
        #Make sure _thread.LockType is the same type as _thread.allocate_locke()
        self.assertIsInstance(_thread.allocate_lock(), _thread.LockType,
                              "_thread.LockType is not an instance of what "
                              "is returned by _thread.allocate_lock()") 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:7,代碼來源:test_dummy_thread.py

示例6: __init__

# 需要導入模塊: import dummy_thread [as 別名]
# 或者: from dummy_thread import allocate_lock [as 別名]
def __init__(self, play, proxy=True, strict=True, dump=True, recurse_lock=False, **options):
        super(Replay, self).__init__(play._target, **options)
        self._calls, self._expected, self._actual = ChainMap(self._calls, play._calls), play._calls, self._calls

        self._proxy = proxy
        self._strict = strict
        self._dump = dump
        self._context = play._context
        self._recurse_lock = allocate_lock() if recurse_lock is True else (recurse_lock and recurse_lock()) 
開發者ID:ionelmc,項目名稱:python-aspectlib,代碼行數:11,代碼來源:test.py

示例7: __init__

# 需要導入模塊: import dummy_thread [as 別名]
# 或者: from dummy_thread import allocate_lock [as 別名]
def __init__(self):
        object.__setattr__(self, '__storage__', {})
        object.__setattr__(self, '__lock__', allocate_lock()) 
開發者ID:google,項目名稱:googleapps-message-recall,代碼行數:5,代碼來源:local.py

示例8: __init__

# 需要導入模塊: import dummy_thread [as 別名]
# 或者: from dummy_thread import allocate_lock [as 別名]
def __init__(self):
        self.mutex = _thread.allocate_lock()
        self.dict = {} 
開發者ID:abdesslem,項目名稱:malwareHunter,代碼行數:5,代碼來源:util.py


注:本文中的dummy_thread.allocate_lock方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。