(path)
| 556 | |
| 557 | @staticmethod |
| 558 | def exists(path): |
| 559 | return os.path.exists(index_file_path(path)) and os.path.exists( |
| 560 | data_file_path(path) |
| 561 | ) |
| 562 | |
| 563 | |
| 564 | class MMapIndexedDatasetBuilder(object): |
nothing calls this directly
no test coverage detected