| 28 | using tensorflow::Thread; |
| 29 | |
| 30 | inline Status FileExists(const string& filename) { |
| 31 | return Env::Default()->FileExists(filename); |
| 32 | } |
| 33 | |
| 34 | inline Status FileExists(const absl::string_view& filename) { |
| 35 | return Env::Default()->FileExists(string(filename)); |
no test coverage detected