(self, model_file_info)
| 304 | return None |
| 305 | |
| 306 | def __get_cache_key(self, model_file_info): |
| 307 | cache_key = { |
| 308 | 'Path': model_file_info['Path'], |
| 309 | 'Revision': model_file_info['Revision'], # commit id |
| 310 | } |
| 311 | return cache_key |
| 312 | |
| 313 | def exists(self, model_file_info): |
| 314 | """Check the file is cached or not. Note existence check will also cover digest check |
no outgoing calls
no test coverage detected