| 133 | } |
| 134 | |
| 135 | absl::StatusOr<std::string> FormatTimestamp(absl::Time timestamp) { |
| 136 | CEL_RETURN_IF_ERROR(ValidateTimestamp(timestamp)); |
| 137 | return RawFormatTimestamp(timestamp); |
| 138 | } |
| 139 | |
| 140 | std::string FormatNanos(int32_t nanos) { |
| 141 | constexpr int32_t kNanosPerMillisecond = 1000000; |