• Home
  • Raw
  • Download

Lines Matching full:timestamp

79 … in order to split up a large request payload - duplicates and existing timestamp entries will be …
82 …llowed 5000 - The response token indicates the last returned PerfSample timestamp - When the resul…
89 … in order to split up a large request payload - duplicates and existing timestamp entries will be …
105Timestamp represents a point in time independent of any time zone or local calendar, encoded as a …
113 # Example 1: Compute Timestamp from POSIX `time()`.
115 # Timestamp timestamp; timestamp.set_seconds(time(NULL)); timestamp.set_nanos(0);
117 # Example 2: Compute Timestamp from POSIX `gettimeofday()`.
121 … # Timestamp timestamp; timestamp.set_seconds(tv.tv_sec); timestamp.set_nanos(tv.tv_usec * 1000);
123 # Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
127 …poch 1970-01-01T00:00:00Z. Timestamp timestamp; timestamp.set_seconds((INT64) ((ticks / 10000000) …
129 # Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
133 …# Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) .setNanos((int) ((millis …
137 # Example 5: Compute Timestamp from current time in Python.
139 # timestamp = Timestamp() timestamp.GetCurrentTime()
143Timestamp type is encoded as a string in the [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) form…
163Timestamp represents a point in time independent of any time zone or local calendar, encoded as a …
171 # Example 1: Compute Timestamp from POSIX `time()`.
173 # Timestamp timestamp; timestamp.set_seconds(time(NULL)); timestamp.set_nanos(0);
175 # Example 2: Compute Timestamp from POSIX `gettimeofday()`.
179 … # Timestamp timestamp; timestamp.set_seconds(tv.tv_sec); timestamp.set_nanos(tv.tv_usec * 1000);
181 # Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
185 …poch 1970-01-01T00:00:00Z. Timestamp timestamp; timestamp.set_seconds((INT64) ((ticks / 10000000) …
187 # Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
191 …# Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) .setNanos((int) ((millis …
195 # Example 5: Compute Timestamp from current time in Python.
197 # timestamp = Timestamp() timestamp.GetCurrentTime()
201Timestamp type is encoded as a string in the [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) form…
217 …llowed 5000 - The response token indicates the last returned PerfSample timestamp - When the resul…
234 …e default page size, 500, if unspecified). It indicates the last sample timestamp to be used as pa…
237Timestamp represents a point in time independent of any time zone or local calendar, encoded as a …
245 # Example 1: Compute Timestamp from POSIX `time()`.
247 # Timestamp timestamp; timestamp.set_seconds(time(NULL)); timestamp.set_nanos(0);
249 # Example 2: Compute Timestamp from POSIX `gettimeofday()`.
253 … # Timestamp timestamp; timestamp.set_seconds(tv.tv_sec); timestamp.set_nanos(tv.tv_usec * 1000);
255 # Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
259 …poch 1970-01-01T00:00:00Z. Timestamp timestamp; timestamp.set_seconds((INT64) ((ticks / 10000000) …
261 # Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
265 …# Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000) .setNanos((int) ((millis …
269 # Example 5: Compute Timestamp from current time in Python.
271 # timestamp = Timestamp() timestamp.GetCurrentTime()
275Timestamp type is encoded as a string in the [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) form…