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


Python LockDir.confirm方法代碼示例

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


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

示例1: test_40_confirm_easy

# 需要導入模塊: from bzrlib.lockdir import LockDir [as 別名]
# 或者: from bzrlib.lockdir.LockDir import confirm [as 別名]
 def test_40_confirm_easy(self):
     """Confirm a lock that's already held"""
     t = self.get_transport()
     lf1 = LockDir(t, 'test_lock')
     lf1.create()
     lf1.attempt_lock()
     lf1.confirm()
開發者ID:c0ns0le,項目名稱:cygwin,代碼行數:9,代碼來源:test_lockdir.py

示例2: test_auto_break_stale_lock_configured_off

# 需要導入模塊: from bzrlib.lockdir import LockDir [as 別名]
# 或者: from bzrlib.lockdir.LockDir import confirm [as 別名]
 def test_auto_break_stale_lock_configured_off(self):
     """Automatic breaking can be turned off"""
     l1 = LockDir(self.get_transport(), 'a',
         extra_holder_info={'pid': '12312313'})
     token_1 = l1.attempt_lock()
     self.addCleanup(l1.unlock)
     l2 = LockDir(self.get_transport(), 'a')
     # This fails now, because dead lock breaking is off by default.
     self.assertRaises(LockContention,
         l2.attempt_lock)
     # and it's in fact not broken
     l1.confirm()
開發者ID:GymWenFLL,項目名稱:tpp_libs,代碼行數:14,代碼來源:test_lockdir.py

示例3: test_44_break_already_released

# 需要導入模塊: from bzrlib.lockdir import LockDir [as 別名]
# 或者: from bzrlib.lockdir.LockDir import confirm [as 別名]
 def test_44_break_already_released(self):
     """Lock break races with regular release"""
     t = self.get_transport()
     lf1 = LockDir(t, 'test_lock')
     lf1.create()
     lf1.attempt_lock()
     # someone else sees it's still locked
     lf2 = LockDir(t, 'test_lock')
     holder_info = lf2.peek()
     # in the interim the lock is released
     lf1.unlock()
     # break should succeed
     lf2.force_break(holder_info)
     # now we should be able to take it
     lf2.attempt_lock()
     lf2.confirm()
開發者ID:c0ns0le,項目名稱:cygwin,代碼行數:18,代碼來源:test_lockdir.py

示例4: test_43_break

# 需要導入模塊: from bzrlib.lockdir import LockDir [as 別名]
# 或者: from bzrlib.lockdir.LockDir import confirm [as 別名]
 def test_43_break(self):
     """Break a lock whose caller has forgotten it"""
     t = self.get_transport()
     lf1 = LockDir(t, 'test_lock')
     lf1.create()
     lf1.attempt_lock()
     # we incorrectly discard the lock object without unlocking it
     del lf1
     # someone else sees it's still locked
     lf2 = LockDir(t, 'test_lock')
     holder_info = lf2.peek()
     self.assertTrue(holder_info)
     lf2.force_break(holder_info)
     # now we should be able to take it
     lf2.attempt_lock()
     lf2.confirm()
開發者ID:c0ns0le,項目名稱:cygwin,代碼行數:18,代碼來源:test_lockdir.py


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