MCPcopy
hub / github.com/borgbackup/borg / store_list

Method store_list

src/borg/repository.py:548–553  ·  view source on GitHub ↗
(self, name, *, deleted=False)

Source from the content-addressed store, hash-verified

546 return self.store.store("config/manifest", data)
547
548 def store_list(self, name, *, deleted=False):
549 self._lock_refresh()
550 try:
551 return list(self.store.list(name, deleted=deleted))
552 except StoreObjectNotFound:
553 return []
554
555 def store_load(self, name):
556 self._lock_refresh()

Callers 3

list_chunkindex_hashesFunction · 0.45
idsMethod · 0.45
do_repo_spaceMethod · 0.45

Calls 2

_lock_refreshMethod · 0.95
listMethod · 0.45

Tested by

no test coverage detected