MCPcopy Create free account
hub / github.com/apache/arrow / delete

Method delete

dev/archery/archery/utils/cache.py:45–49  ·  view source on GitHub ↗

Remove a key (and the file) from the cache.

(self, key)

Source from the content-addressed store, hash-verified

43 return path if path.exists() else None
44
45 def delete(self, key):
46 """ Remove a key (and the file) from the cache. """
47 path = self.get(key)
48 if path:
49 path.unlink()
50
51 def get_or_insert(self, key, create):
52 """

Callers 10

append_valueMethod · 0.45
initializeMethod · 0.45
initializeMethod · 0.45
csv_loadMethod · 0.45
mergeMethod · 0.45
initializeMethod · 0.45
to_hMethod · 0.45
normalize_array!Method · 0.45
clear_pr_state_labelsMethod · 0.45

Calls 1

getMethod · 0.95

Tested by

no test coverage detected