Home
last modified time | relevance | path

Searched refs:UTC (Results 1 – 25 of 430) sorted by relevance

12345678910>>...18

/external/python/pyasn1/tests/type/
Dtest_useful.py38 UTC = FixedOffset(0, 'UTC') variable
49 …izedTime.fromDateTime(datetime.datetime(2017, 7, 11, 0, 1, 2, 3000, tzinfo=UTC)) == '2017071100010…
55 …assert datetime.datetime(2017, 7, 11, 0, 1, 2, tzinfo=UTC) == useful.GeneralizedTime('201707110001…
58 …assert datetime.datetime(2017, 7, 11, 0, 1, 2, 3000, tzinfo=UTC) == useful.GeneralizedTime('201707…
61 …assert datetime.datetime(2017, 7, 11, 0, 1, 2, 3000, tzinfo=UTC) == useful.GeneralizedTime('201707…
64 …assert datetime.datetime(2017, 7, 11, 0, 1, 2, 3000, tzinfo=UTC) == useful.GeneralizedTime('201707…
104 …assert useful.UTCTime.fromDateTime(datetime.datetime(2017, 7, 11, 0, 1, 2, tzinfo=UTC)) == '170711…
110 …assert datetime.datetime(2017, 7, 11, 0, 1, 2, tzinfo=UTC) == useful.UTCTime('170711000102Z').asDa…
113 …assert datetime.datetime(2017, 7, 11, 0, 1, 2, tzinfo=UTC) == useful.UTCTime('170711000102+0000').…
/external/golang-protobuf/ptypes/
Dtimestamp_test.go52 time.Unix(math.MinInt64, math.MinInt32).UTC()},
54 {&tspb.Timestamp{Seconds: math.MinInt64, Nanos: 0}, false, time.Unix(math.MinInt64, 0).UTC()},
60 time.Unix(math.MaxInt64, math.MaxInt32).UTC()},
63 time.Unix(math.MaxInt64, 1e9-1).UTC()},
66 time.Date(9999, 12, 31, 23, 59, 59, 1e9-1, time.UTC)},
68 {&tspb.Timestamp{Seconds: maxValidSeconds, Nanos: 0}, false, time.Unix(maxValidSeconds, 0).UTC()},
75 time.Date(2011, 1, 26, 3, 25, 45, 940483, time.UTC)},
98 want := time.Unix(0, 0).UTC()
137 return time.Date(year, time.Month(month), day, 0, 0, 0, 0, time.UTC)
Dtimestamp.go95 t = time.Unix(0, 0).UTC() // treat nil like the empty Timestamp
97 t = time.Unix(ts.Seconds, int64(ts.Nanos)).UTC()
/external/llvm-project/clang/test/SemaCUDA/
Ddevice-var-init.cu121 __device__ UTC d_utc;
123 __shared__ UTC s_utc;
125 __constant__ UTC c_utc;
128 __device__ UTC d_utc_i(3);
130 __shared__ UTC s_utc_i(3);
132 __constant__ UTC c_utc_i(3);
330 static __device__ UTC d_utc; in df_sema()
332 static __shared__ UTC s_utc; in df_sema()
334 static __constant__ UTC c_utc; in df_sema()
337 static __device__ UTC d_utc_i(3); in df_sema()
[all …]
/external/icu/android_icu4j/testing/src/com/android/icu/test/util/
DExtendedTimeZoneParameterizedTest.java89 LocalDateTime.of(1900, Month.DECEMBER, 24, 12, 0).toInstant(ZoneOffset.UTC), in testTransitionsNearInstants()
90 LocalDateTime.of(1940, Month.JULY, 1, 0, 0).toInstant(ZoneOffset.UTC), in testTransitionsNearInstants()
91 LocalDateTime.of(1970, Month.JANUARY, 1, 2, 3).toInstant(ZoneOffset.UTC), in testTransitionsNearInstants()
92 LocalDateTime.of(1980, Month.FEBRUARY, 4, 5, 6).toInstant(ZoneOffset.UTC), in testTransitionsNearInstants()
93 LocalDateTime.of(1990, Month.MARCH, 7, 8, 9).toInstant(ZoneOffset.UTC), in testTransitionsNearInstants()
94 LocalDateTime.of(2000, Month.APRIL, 10, 11, 12).toInstant(ZoneOffset.UTC), in testTransitionsNearInstants()
95 LocalDateTime.of(2016, Month.MAY, 13, 14, 15).toInstant(ZoneOffset.UTC), in testTransitionsNearInstants()
96 LocalDateTime.of(2020, Month.JUNE, 16, 17, 18).toInstant(ZoneOffset.UTC), in testTransitionsNearInstants()
97 LocalDateTime.of(2100, Month.JULY, 19, 20, 21).toInstant(ZoneOffset.UTC), in testTransitionsNearInstants()
144 .toInstant(ZoneOffset.UTC); in testAllTransitions()
[all …]
/external/python/dateutil/dateutil/test/
Dtest_utils.py13 UTC = tz.tzutc() variable
29 self.assertEqual(utils.today(UTC),
30 datetime(2014, 12, 16, 0, 0, 0, tzinfo=UTC))
38 dt = datetime(2014, 9, 14, 9, 30, tzinfo=UTC)
40 UTC)
Dtest_tz.py289 UTC = tz.tzutc()
291 t0_u = datetime(2013, 10, 27, 0, 30, tzinfo=UTC) # BST
292 t1_u = datetime(2013, 10, 27, 1, 30, tzinfo=UTC) # GMT
311 UTC = tz.tzutc()
323 in_dst_via_utc = (pre_dst.astimezone(UTC) + 2*hour).astimezone(NYC)
342 UTC = tz.tzutc()
348 self.assertNotEqual(dt0.astimezone(UTC), dt1.astimezone(UTC))
564 UTC = tz.tzutc()
583 in_dst_via_utc = (pre_dst.astimezone(UTC) + 2*hour).astimezone(NYC)
599 UTC = tz.tzutc()
[all …]
/external/clang/test/SemaCUDA/
Ddevice-var-init.cu115 __device__ UTC d_utc;
117 __shared__ UTC s_utc;
119 __constant__ UTC c_utc;
122 __device__ UTC d_utc_i(3);
124 __shared__ UTC s_utc_i(3);
126 __constant__ UTC c_utc_i(3);
/external/llvm-project/llvm/test/tools/llvm-ranlib/
DD-flag.test3 ## Important: all `llvm-ar tv` calls must use TZ=UTC to produce identical values
5 # RUN: env TZ=UTC touch -t 200001020304 %t.o
9 # RUN: env TZ=UTC llvm-ar tv %t-no-index.a | FileCheck %s --check-prefix=REAL-VALUES
13 # RUN: env TZ=UTC llvm-ar tv %t.a | FileCheck %s --check-prefix=DETERMINISTIC-VALUES
17 # RUN: env TZ=UTC llvm-ar tv %t.a | FileCheck %s --check-prefix=REAL-VALUES
21 # RUN: env TZ=UTC llvm-ar tv %t.a | FileCheck %s --check-prefix=REAL-VALUES
23 # RUN: env TZ=UTC llvm-ar tv %t.a | FileCheck %s --check-prefix=DETERMINISTIC-VALUES
27 # RUN: env TZ=UTC llvm-ar tv %t.a | FileCheck %s --check-prefix=REAL-VALUES
/external/tcpdump/tests/
Dahcp-vv.out4 Origin Time: 2013-11-10 07:59:42 UTC
13 Origin Time: 2013-11-10 07:59:44 UTC
23 Origin Time: 2013-11-10 07:59:42 UTC
32 Origin Time: 2013-11-10 07:59:44 UTC
42 Origin Time: 2013-11-10 08:00:09 UTC
51 Origin Time: 2013-11-10 08:00:11 UTC
61 Origin Time: 2013-11-10 08:00:09 UTC
70 Origin Time: 2013-11-10 08:00:12 UTC
/external/snakeyaml/src/test/java/examples/jodatime/
DJodaTimeExampleTest.java37 DateTime time = new DateTime(timestamp, DateTimeZone.UTC); in testDump()
48 assertEquals(new DateTime(timestamp, DateTimeZone.UTC), time); in testLoad()
75 return new DateTime(date, DateTimeZone.UTC); in construct()
105 return new DateTime(date, DateTimeZone.UTC); in construct()
DJodaTimeFlowStylesTest.java45 DateTime etalon = new DateTime(timestamp, DateTimeZone.UTC); in testLoadBeanWithBlockFlow()
120 DateTime etalon = new DateTime(timestamp, DateTimeZone.UTC); in testLoadBeanWithAutoFlow()
146 return new DateTime(date, DateTimeZone.UTC); in construct()
/external/cldr/tools/java/org/unicode/cldr/util/data/
Dleapseconds23 # periodically uses leap seconds to keep UTC to within 0.9 s of UT1
35 # of UTC.
37 # All leap-seconds are Stationary (S) at the given UTC time.
71 # UTC timestamp when this leap second list expires.
78 #updated 1467936000 (2016-07-08 00:00:00 UTC)
79 #expires 1624838400 (2021-06-28 00:00:00 UTC)
Dantarctica43 # Casey moved from UTC+8 to UTC+11
44 # Davis moved from UTC+7 to UTC+5
45 # Mawson moved from UTC+6 to UTC+5
57 # - Casey station reverted to its normal time of UTC+8 on 5 March 2010.
58 # The change to UTC+11 is being considered as a regular summer thing but
61 # - Davis station will revert to its normal time of UTC+7 at 10 March 2010
62 # 20:00 UTC.
64 # - Mawson station stays on UTC+5.
71 # zone to UTC+11 in "the morning of 22nd October 2016".
79 # time change back and forth between UTC+8 and UTC+11 for Casey:
[all …]
Dbackward82 Link Etc/UTC Etc/UCT
117 Link Etc/UTC UCT
130 Link Etc/UTC UTC
131 Link Etc/UTC Universal
133 Link Etc/UTC Zulu
Detcetera20 Zone Etc/UTC 0 - UTC
28 Link Etc/UTC Etc/Universal
29 Link Etc/UTC Etc/Zulu
/external/python/pyasn1/docs/source/pyasn1/type/useful/
Dutctime.rst20 * **YYMMDDhhmm[ss]** standing for UTC time, two
25 * a string as above followed by the letter “Z” (denoting a UTC
29 time zone offset relative to UTC
/external/iptables/extensions/
Dlibxt_time.man3 as UTC by default.
38 Use the kernel timezone instead of UTC to determine whether a packet meets the
41 About kernel timezones: Linux keeps the system time in UTC, and always does so.
43 time source has no timezone information, such as the x86 CMOS RTC, UTC will be
44 assumed. If the time source is however not in UTC, userspace should provide the
50 userspace environment variable specifies how the UTC-based system time is
55 non-UTC sources, such as FAT filesystems, to UTC (since the latter is what the
/external/python/cpython3/Doc/library/
Ddatetime.rst49 Coordinated Universal Time (UTC), local time, or time in some other timezone is
57 These :class:`tzinfo` objects capture information about the offset from UTC
62 represent simple timezones with fixed offsets from UTC, such as UTC itself or
66 standard suitable for every application aside from UTC.
131 fixed offset from the UTC.
878 Return the current UTC date and time, with :attr:`.tzinfo` ``None``.
880 This is like :meth:`now`, but returns the current UTC date and time, as a naive
881 :class:`.datetime` object. An aware current UTC datetime can be obtained by
888 in UTC. As such, the recommended way to create an object representing the
889 current time in UTC is by calling ``datetime.now(timezone.utc)``.
[all …]
/external/protobuf/src/google/protobuf/
Dtimestamp.proto45 // nanosecond resolution. The count is relative to an epoch at UTC midnight on
107 // are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
108 // is required. A proto3 JSON serializer should always use UTC (as indicated by
110 // able to accept both UTC and other timezones (as indicated by an offset).
113 // 01:30 UTC on January 15, 2017.
128 // Represents seconds of UTC time since Unix epoch
/external/golang-protobuf/ptypes/timestamp/
Dtimestamp.proto45 // nanosecond resolution. The count is relative to an epoch at UTC midnight on
107 // are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
108 // is required. A proto3 JSON serializer should always use UTC (as indicated by
110 // able to accept both UTC and other timezones (as indicated by an offset).
113 // 01:30 UTC on January 15, 2017.
128 // Represents seconds of UTC time since Unix epoch
/external/clang/test/CodeGenCUDA/Inputs/
Dcuda-initializers.h89 struct UTC { struct
90 template <typename... T> __device__ UTC(T...);
/external/llvm-project/clang/test/SemaCUDA/Inputs/
Dcuda-initializers.h89 struct UTC { struct
90 template <typename... T> __device__ UTC(T...);
/external/llvm-project/clang/test/CodeGenCUDA/Inputs/
Dcuda-initializers.h89 struct UTC { struct
90 template <typename... T> __device__ UTC(T...);
/external/clang/test/SemaCUDA/Inputs/
Dcuda-initializers.h89 struct UTC { struct
90 template <typename... T> __device__ UTC(T...);

12345678910>>...18