本文整理汇总了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()
示例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()
示例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()
示例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()