Find metadata directories in paths heuristically.
(cls, name, paths)
| 998 | |
| 999 | @classmethod |
| 1000 | def _search_paths(cls, name, paths): |
| 1001 | """Find metadata directories in paths heuristically.""" |
| 1002 | prepared = Prepared(name) |
| 1003 | return itertools.chain.from_iterable( |
| 1004 | path.search(prepared) for path in map(FastPath, paths) |
| 1005 | ) |
| 1006 | |
| 1007 | @classmethod |
| 1008 | def invalidate_caches(cls) -> None: |
no test coverage detected