equal
deleted
inserted
replaced
52 # how much bytes should be read from fncache in one read |
52 # how much bytes should be read from fncache in one read |
53 # It is done to prevent loading large fncache files into memory |
53 # It is done to prevent loading large fncache files into memory |
54 fncache_chunksize = 10**6 |
54 fncache_chunksize = 10**6 |
55 |
55 |
56 |
56 |
57 def _match_tracked_entry(entry: "BaseStoreEntry", matcher): |
57 def _match_tracked_entry(entry: BaseStoreEntry, matcher): |
58 """parses a fncache entry and returns whether the entry is tracking a path |
58 """parses a fncache entry and returns whether the entry is tracking a path |
59 matched by matcher or not. |
59 matched by matcher or not. |
60 |
60 |
61 If matcher is None, returns True""" |
61 If matcher is None, returns True""" |
62 |
62 |