Home
last modified time | relevance | path

Searched refs:to_rfc3339 (Results 1 – 6 of 6) sorted by relevance

/external/autotest/server/site_tests/tast/
Dtast_unittest.py697 'start': to_rfc3339(self._start_time),
698 'end': to_rfc3339(self._end_time),
699 'errors': [{'reason': e[0], 'time': to_rfc3339(e[1])}
813 def to_rfc3339(t): function
/external/rust/crates/chrono/benches/
Dchrono.rs48 c.bench_function("bench_datetime_to_rfc3339", |b| b.iter(|| black_box(dt).to_rfc3339())); in bench_datetime_to_rfc3339()
/external/rust/crates/rusqlite/src/types/
Dchrono.rs88 Ok(ToSqlOutput::from(self.with_timezone(&Utc).to_rfc3339())) in to_sql()
/external/rust/crates/chrono/
DREADME.md234 [`to_rfc3339`](https://docs.rs/chrono/0.4/chrono/struct.DateTime.html#method.to_rfc3339) methods
258 assert_eq!(dt.to_rfc3339(), "2014-11-28T12:00:09+00:00");
DCHANGELOG.md124 support (i.e. any of the string-generating functions like `to_rfc3339`) you
/external/rust/crates/chrono/src/
Ddatetime.rs406 pub fn to_rfc3339(&self) -> String { in to_rfc3339() function
2289 Utc.ymd(2015, 2, 18).and_hms(23, 16, 9).to_rfc3339(), in test_datetime_rfc2822_and_rfc3339()
2297 EDT.ymd(2015, 2, 18).and_hms_milli(23, 16, 9, 150).to_rfc3339(), in test_datetime_rfc2822_and_rfc3339()
2305 EDT.ymd(2015, 2, 18).and_hms_micro(23, 59, 59, 1_234_567).to_rfc3339(), in test_datetime_rfc2822_and_rfc3339()