| 279 | } |
| 280 | template <typename... Args> |
| 281 | Status NotFound(const absl::FormatSpec<Args...>& format, const Args&... args) { |
| 282 | return WithLogBacktrace( |
| 283 | tensorflow::errors::NotFound(absl::StrFormat(format, args...))); |
| 284 | } |
| 285 | template <typename... Args> |
| 286 | Status Unavailable(const absl::FormatSpec<Args...>& format, |
| 287 | const Args&... args) { |