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

Method chunks

src/borg/cache.py:861–864  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

859
860 @property
861 def chunks(self):
862 if self._chunks is None:
863 self._chunks = build_chunkindex_from_repo(self.repository, cache_immediately=True)
864 return self._chunks
865
866 def seen_chunk(self, id, size=None):
867 entry = self.chunks.get(id)

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected