Lines Matching defs:seconds
13 * or calendar, represented as seconds and fractions of seconds at
17 * seconds long, i.e. leap seconds are "smeared" so that no leap second
39 * // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
56 * seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
61 * For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
77 * Represents seconds of UTC time since Unix epoch
81 * Generated from protobuf field <code>int64 seconds = 1;</code>
83 private $seconds = 0;
100 * @type int|string $seconds
101 * Represents seconds of UTC time since Unix epoch
117 * Represents seconds of UTC time since Unix epoch
121 * Generated from protobuf field <code>int64 seconds = 1;</code>
126 return $this->seconds;
130 * Represents seconds of UTC time since Unix epoch
134 * Generated from protobuf field <code>int64 seconds = 1;</code>
141 $this->seconds = $var;
185 $this->seconds = $datetime->getTimestamp();
196 $time = sprintf('%s.%06d', $this->seconds, $this->nanos / 1000);