Formats the given time in milliseconds as seconds.
| 5539 | |
| 5540 | // Formats the given time in milliseconds as seconds. |
| 5541 | static std::string FormatTimeInMillisAsDuration(TimeInMillis ms) { |
| 5542 | ::std::stringstream ss; |
| 5543 | ss << (static_cast<double>(ms) * 1e-3) << "s"; |
| 5544 | return ss.str(); |
| 5545 | } |
| 5546 | |
| 5547 | // Converts the given epoch time in milliseconds to a date string in the |
| 5548 | // RFC3339 format, without the timezone information. |
no outgoing calls
no test coverage detected