| 106 | |
| 107 | namespace { |
| 108 | string LegacyName(const string& job, int replica, int task, const string& type, |
| 109 | int id) { |
| 110 | return DeviceName(job, replica, task, "/", absl::AsciiStrToLower(type), id); |
| 111 | } |
| 112 | } // anonymous namespace |
| 113 | |
| 114 | bool DeviceNameUtils::ParseFullName(StringPiece fullname, ParsedName* p) { |
no test coverage detected