/dports/devel/brz/breezy-3.2.0/breezy/tests/per_repository_reference/ |
H A D | test_break_lock.py | 38 self.assertEqual(repo.get_physical_lock_status(), 39 unused_repo.get_physical_lock_status()) 40 if not unused_repo.get_physical_lock_status():
|
/dports/devel/brz/breezy-3.2.0/breezy/tests/per_repository/ |
H A D | test_break_lock.py | 44 self.assertEqual(self.repo.get_physical_lock_status(), 45 self.unused_repo.get_physical_lock_status()) 46 if not self.unused_repo.get_physical_lock_status():
|
/dports/devel/brz/breezy-3.2.0/breezy/ |
H A D | info.py | 215 if (repository and repository.get_physical_lock_status() or 216 (branch and branch.get_physical_lock_status()) or 217 (working and working.get_physical_lock_status())): 221 if working.get_physical_lock_status(): 227 if branch.get_physical_lock_status(): 233 if repository.get_physical_lock_status():
|
H A D | counted_lock.py | 48 def get_physical_lock_status(self): member in CountedLock
|
H A D | lockable_files.py | 208 def get_physical_lock_status(self): member in LockableFiles
|
H A D | workingtree.py | 969 def get_physical_lock_status(self): member in WorkingTree 970 raise NotImplementedError(self.get_physical_lock_status)
|
H A D | repository.py | 501 def get_physical_lock_status(self): member in Repository 502 return self.control_files.get_physical_lock_status()
|
H A D | branch.py | 335 def get_physical_lock_status(self): member in Branch 336 raise NotImplementedError(self.get_physical_lock_status)
|
/dports/devel/brz/breezy-3.2.0/breezy/tests/per_foreign_vcs/ |
H A D | test_repository.py | 76 self.assertFalse(repo.get_physical_lock_status())
|
H A D | test_branch.py | 119 self.assertFalse(branch.get_physical_lock_status())
|
/dports/devel/brz/breezy-3.2.0/breezy/tests/per_branch/ |
H A D | test_break_lock.py | 53 if not other_instance.get_physical_lock_status():
|
H A D | test_locking.py | 369 self.assertTrue(branch.get_physical_lock_status()) # XXX 497 if not branch.repository.get_physical_lock_status():
|
/dports/devel/brz/breezy-3.2.0/breezy/bzr/tests/ |
H A D | per_pack_repository.py | 591 self.assertFalse(repo.get_physical_lock_status()) 604 self.assertTrue(repo.get_physical_lock_status()) 607 self.assertFalse(repo.get_physical_lock_status()) 612 self.assertTrue(repo.get_physical_lock_status())
|
H A D | test_smart.py | 1547 self.assertEqual(True, branch.get_physical_lock_status()) 1558 self.assertEqual(False, branch.get_physical_lock_status()) 2298 if repo.get_physical_lock_status(): 2310 self.assertEqual(False, repo.get_physical_lock_status())
|
H A D | test_remote.py | 1193 result = branch.get_physical_lock_status() 1209 result = branch.get_physical_lock_status() 3091 result = repo.get_physical_lock_status() 3102 result = repo.get_physical_lock_status()
|
/dports/devel/brz/breezy-3.2.0/breezy/tests/ |
H A D | test_lockable_files.py | 168 self.assertTrue(self.lockable.get_physical_lock_status())
|
/dports/devel/brz/breezy-3.2.0/breezy/bzr/smart/ |
H A D | branch.py | 435 if branch.get_physical_lock_status():
|
H A D | repository.py | 793 if repository.get_physical_lock_status():
|
/dports/devel/brz/breezy-3.2.0/breezy/bzr/ |
H A D | branch.py | 236 def get_physical_lock_status(self): member in BzrBranch 237 return self.control_files.get_physical_lock_status()
|
H A D | workingtree.py | 276 def get_physical_lock_status(self): member in InventoryWorkingTree 277 return self._control_files.get_physical_lock_status()
|
H A D | remote.py | 1598 def get_physical_lock_status(self): member in RemoteRepository 1605 return self._real_repository.get_physical_lock_status() 3631 def get_physical_lock_status(self): member in RemoteBranch 3638 return self._real_branch.get_physical_lock_status()
|
/dports/devel/brz/breezy-3.2.0/breezy/git/tests/ |
H A D | test_branch.py | 164 self.assertFalse(self.git_branch.get_physical_lock_status())
|
/dports/devel/brz/breezy-3.2.0/breezy/git/ |
H A D | repository.py | 137 def get_physical_lock_status(self): member in GitRepository
|
/dports/devel/brz/breezy-3.2.0/breezy/tests/blackbox/ |
H A D | test_info.py | 1303 repo_locked = lco_tree.branch.repository.get_physical_lock_status()
|
/dports/devel/brz/breezy-3.2.0/breezy/tests/per_controldir/ |
H A D | test_controldir.py | 1671 if not lock_repo.get_physical_lock_status(): 1712 thisdir.find_repository().get_physical_lock_status()
|