本文整理匯總了Python中bzrlib.lockdir.LockDir.force_break方法的典型用法代碼示例。如果您正苦於以下問題:Python LockDir.force_break方法的具體用法?Python LockDir.force_break怎麽用?Python LockDir.force_break使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類bzrlib.lockdir.LockDir
的用法示例。
在下文中一共展示了LockDir.force_break方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_44_break_already_released
# 需要導入模塊: from bzrlib.lockdir import LockDir [as 別名]
# 或者: from bzrlib.lockdir.LockDir import force_break [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()
示例2: test_43_break
# 需要導入模塊: from bzrlib.lockdir import LockDir [as 別名]
# 或者: from bzrlib.lockdir.LockDir import force_break [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()