Formats the given time in milliseconds as seconds.
| 4549 | |
| 4550 | // Formats the given time in milliseconds as seconds. |
| 4551 | static std::string FormatTimeInMillisAsDuration(TimeInMillis ms) { |
| 4552 | ::std::stringstream ss; |
| 4553 | ss << (static_cast<double>(ms) * 1e-3) << "s"; |
| 4554 | return ss.str(); |
| 4555 | } |
| 4556 | |
| 4557 | // Converts the given epoch time in milliseconds to a date string in the |
| 4558 | // RFC3339 format, without the timezone information. |
no test coverage detected