Home
last modified time | relevance | path

Searched full:expiry (Results 1 – 25 of 405) sorted by relevance

12345678910>>...17

/external/grpc-grpc/src/core/lib/experiments/
Dexperiments.yaml18 # expiry: when is the next time this experiment *must* be updated
47 expiry: 2024/04/01
52 expiry: 2024/06/01
58 expiry: 2024/08/01
65 expiry: 2024/09/09
72 expiry: 2024/08/01
78 expiry: 2024/07/01
85 expiry: 2024/07/01
92 expiry: 2024/07/01
98 expiry: 2024/08/01
[all …]
/external/python/google-auth-library-python/tests/oauth2/
Dtest_credentials.py123 expiry = _helpers.utcnow() + datetime.timedelta(seconds=500)
130 # Expiry,
131 expiry,
156 # Check that the credentials have the token and expiry
158 assert credentials.expiry == expiry
185 expiry = _helpers.utcnow() + datetime.timedelta(seconds=500)
192 # Expiry,
193 expiry,
227 # Check that the credentials have the token and expiry
229 assert creds.expiry == expiry
[all …]
Dtest__client.py173 token, expiry, extra_data = _client.jwt_grant(
184 assert expiry == utcnow() + datetime.timedelta(seconds=500)
207 token, expiry, extra_data = _client.id_token_jwt_grant(
220 assert expiry == now
248 token, refresh_token, expiry, extra_data = _client.refresh_grant(
272 assert expiry == datetime.datetime.min + datetime.timedelta(seconds=500)
288 token, refresh_token, expiry, extra_data = _client.refresh_grant(
312 assert expiry == datetime.datetime.min + datetime.timedelta(seconds=500)
/external/rust/crates/grpcio-sys/grpc/src/core/lib/experiments/
Dexperiments.yaml18 # expiry: when is the next time this experiment *must* be updated
42 expiry: 2023/06/01
47 expiry: 2023/06/01
55 expiry: 2023/06/01
60 expiry: 2023/08/01
65 expiry: 2023/09/01
70 expiry: 2023/10/01
75 expiry: never-ever
82 expiry: 2023/11/01
87 expiry: 2023/11/01
[all …]
/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/
Dbasic_waitable_timer.hpp72 * // Construct a timer without setting an expiry time.
75 * // Set an expiry time relative to now.
95 * // Construct a timer with an absolute expiry time.
103 * @par Changing an active waitable timer's expiry time
105 * Changing the expiry time of a timer while there are pending asynchronous
171 * This constructor creates a timer without setting an expiry time. The
172 * expires_at() or expires_after() functions must be called to set an expiry
185 * This constructor creates a timer without setting an expiry time. The
186 * expires_at() or expires_after() functions must be called to set an expiry
202 /// Constructor to set a particular expiry time as an absolute time.
[all …]
Dbasic_deadline_timer.hpp57 * // Construct a timer without setting an expiry time.
60 * // Set an expiry time relative to now.
80 * // Construct a timer with an absolute expiry time.
88 * @par Changing an active deadline_timer's expiry time
90 * Changing the expiry time of a timer while there are pending asynchronous
155 * This constructor creates a timer without setting an expiry time. The
157 * expiry time before the timer can be waited on.
169 * This constructor creates a timer without setting an expiry time. The
171 * expiry time before the timer can be waited on.
186 /// Constructor to set a particular expiry time as an absolute time.
[all …]
Dbasic_socket_iostream.hpp316 /// (Deprecated: Use expiry().) Get the stream's expiry time as an absolute
319 * @return An absolute time value representing the stream's expiry time.
327 /// Get the stream's expiry time as an absolute time.
329 * @return An absolute time value representing the stream's expiry time.
331 time_point expiry() const in expiry() function in boost::asio::basic_socket_iostream
333 return rdbuf()->expiry(); in expiry()
336 /// Set the stream's expiry time as an absolute time.
338 * This function sets the expiry time associated with the stream. Stream
343 * @param expiry_time The expiry time to be used for the stream.
350 /// Set the stream's expiry time relative to now.
[all …]
Dbasic_socket_streambuf.hpp337 /// (Deprecated: Use expiry().) Get the stream buffer's expiry time as an
340 * @return An absolute time value representing the stream buffer's expiry
349 /// Get the stream buffer's expiry time as an absolute time.
351 * @return An absolute time value representing the stream buffer's expiry
354 time_point expiry() const in expiry() function in boost::asio::basic_socket_streambuf
359 /// Set the stream buffer's expiry time as an absolute time.
361 * This function sets the expiry time associated with the stream. Stream
366 * @param expiry_time The expiry time to be used for the stream.
373 /// Set the stream buffer's expiry time relative to now.
375 * This function sets the expiry time associated with the stream. Stream
[all …]
/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/
Ddeadline_timer_service.hpp61 time_type expiry; member
90 impl.expiry = time_type(); in construct()
107 impl.expiry = other_impl.expiry; in move_construct()
108 other_impl.expiry = time_type(); in move_construct()
126 impl.expiry = other_impl.expiry; in move_assign()
127 other_impl.expiry = time_type(); in move_assign()
187 // Get the expiry time for the timer as an absolute time.
188 time_type expiry(const implementation_type& impl) const in expiry() function in boost::asio::detail::deadline_timer_service
190 return impl.expiry; in expiry()
193 // Get the expiry time for the timer as an absolute time.
[all …]
/external/python/google-auth-library-python/google/oauth2/
Dcredentials.py78 expiry=None, argument
114 requested scopes and its expiry datetime. This is useful when no
123 self.expiry = expiry
153 self.expiry = d.get("expiry")
265 token, expiry = self.refresh_handler(request, scopes=scopes)
271 if not isinstance(expiry, datetime):
273 "The refresh_handler returned expiry is not a datetime object."
275 if _helpers.utcnow() >= expiry - _helpers.REFRESH_THRESHOLD:
281 self.expiry = expiry
299 expiry,
[all …]
D_service_account_async.py72 access_token, expiry, _ = await _client_async.jwt_grant(
76 self.expiry = expiry
128 access_token, expiry, _ = await _client_async.id_token_jwt_grant(
132 self.expiry = expiry
/external/python/google-auth-library-python/tests_async/oauth2/
Dtest_credentials_async.py70 expiry = _helpers.utcnow() + datetime.timedelta(seconds=500)
78 # Expiry,
79 expiry,
104 # Check that the credentials have the token and expiry
106 assert creds.expiry == expiry
135 expiry = _helpers.utcnow() + datetime.timedelta(seconds=500)
143 # Expiry,
144 expiry,
177 # Check that the credentials have the token and expiry
179 assert creds.expiry == expiry
[all …]
Dtest__client_async.py138 token, expiry, extra_data = await _client.jwt_grant(
150 assert expiry == utcnow() + datetime.timedelta(seconds=500)
175 token, expiry, extra_data = await _client.id_token_jwt_grant(
189 assert expiry == now
221 token, refresh_token, expiry, extra_data = await _client.refresh_grant(
245 assert expiry == datetime.datetime.min + datetime.timedelta(seconds=500)
262 token, refresh_token, expiry, extra_data = await _client.refresh_grant(
286 assert expiry == datetime.datetime.min + datetime.timedelta(seconds=500)
/external/libwebsockets/lib/misc/cache-ttl/
Dlws-cache-ttl.c58 size_t size, lws_usec_t expiry, void **ppay) in lws_cache_write_through() argument
77 source, size, expiry, ppay); in lws_cache_write_through()
96 lws_usec_t expiry = 0; in lws_cache_lookup() local
132 * the cache, and we want to know the earliest expiry of any of the in lws_cache_lookup()
143 if (m->expiry && (!expiry || expiry < m->expiry)) in lws_cache_lookup()
144 expiry = m->expiry; in lws_cache_lookup()
183 * with its expiry set to the earliest of the results, and copy it in in lws_cache_lookup()
187 n = l1->info.ops->write(l1, meta_key, temp, sum, expiry, (void **)&p); in lws_cache_lookup()
Dheap.c45 if (c->expiry > d->expiry) in sort_expiry()
47 if (c->expiry < d->expiry) in sort_expiry()
185 if (item->expiry > now) in expiry_cb()
193 * Let's figure out what the earliest next expiry is
207 *pearliest = item->expiry; in earliest_expiry()
323 const uint8_t *source, size_t size, lws_usec_t expiry, in lws_cache_heap_write() argument
403 item->expiry = expiry; in lws_cache_heap_write()
407 if (expiry) { in lws_cache_heap_write()
408 /* adding to expiry is optional, on nonzero expiry */ in lws_cache_heap_write()
414 (unsigned long long)ei->expiry); in lws_cache_heap_write()
[all …]
Dfile.c363 lws_usec_t expiry = 0; in nsc_line_to_tag() local
382 expiry = (lws_usec_t)((unsigned long long)atoll(col) * in nsc_line_to_tag()
411 *pexpiry = expiry; in nsc_line_to_tag()
431 lws_usec_t expiry; in nsc_lookup_cb() local
450 if (nsc_line_to_tag(buf, size, tag, sizeof(tag), &expiry)) in nsc_lookup_cb()
473 ctx->match->expiry = expiry; in nsc_lookup_cb()
545 lws_usec_t expiry; in nsc_regen_cb() local
551 if (nsc_line_to_tag(buf, size, tag, sizeof(tag), &expiry)) in nsc_regen_cb()
555 /* routinely track the earliest expiry */ in nsc_regen_cb()
558 (expiry && cache->earliest_expiry > expiry)) in nsc_regen_cb()
[all …]
/external/cronet/net/http/
Dtransport_security_persister_unittest.cc79 const base::Time expiry = current_time + base::Seconds(1000); in TEST_F() local
84 state_->AddHSTS(kYahooDomain, expiry, false /* include subdomains */); in TEST_F()
108 const base::Time expiry = current_time + base::Seconds(1000); in TEST_F() local
114 state_->AddHSTS(kYahooDomain, expiry, include_subdomains); in TEST_F()
137 base::Time expiry = base::Time::Now() + base::Seconds(1000); in TEST_F() local
139 state_->AddHSTS("www.example.com", expiry, include_subdomains); in TEST_F()
142 expiry = base::Time::Now() + base::Seconds(3000); in TEST_F()
143 state_->AddHSTS("www.example.net", expiry, include_subdomains); in TEST_F()
203 "\"expiry\": 1266815027.983453, " in TEST_F()
224 " \"expiry\": 0.0," in TEST_F()
[all …]
Dtransport_security_state_unittest.cc245 return lhs.last_observed == rhs.last_observed && lhs.expiry == rhs.expiry && in operator ==()
253 return lhs.last_observed == rhs.last_observed && lhs.expiry == rhs.expiry && in operator ==()
321 const base::Time expiry = current_time + base::Seconds(1000); in TEST_F() local
331 state.AddHSTS("example.com", expiry, true /* include_subdomains */); in TEST_F()
346 state2.AddHSTS("example.net.", expiry, true /* include_subdomains */); in TEST_F()
354 state3.AddHSTS("", expiry, true /* include_subdomains */); in TEST_F()
362 state4.AddHSTS(".", expiry, true /* include_subdomains */); in TEST_F()
379 const base::Time expiry = current_time + base::Seconds(1000); in TEST_F() local
383 state.AddHSTS("example.com", expiry, include_subdomains); in TEST_F()
393 const base::Time expiry = current_time + base::Seconds(1000); in TEST_F() local
[all …]
/external/libwebsockets/include/libwebsockets/
Dlws-cache-ttl.h25 /** \defgroup lws_cache_ttl Cache supporting expiry
26 * ##Cache supporting expiry
42 * Both expiry and LRU orderings are kept so it is easy to find out usage
47 * or when their expiry time arrives. So you shouldn't keep copies of pointers
63 * \param expiry: the usec time that the object will autodestroy
70 * destroyed when \p expiry occurs.
77 size_t size, lws_usec_t expiry, void **ppay);
81 lws_usec_t expiry; member
82 /* earliest expiry amongst results */
117 * The cached results list expiry is set to the earliest expiry of any listed
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
Ddeprecation.js26 var expiry = new Date(date);
27 expiry.setMonth(expiry.getMonth() + 3); // 3 months grace period
29 if (today < expiry) {
31 … ' + feature + ' ' + auxVerb + ' deprecated and will stop working on ' + expiry.toDateString() + '…
/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_datagram_queue_test.cc162 TEST_F(QuicDatagramQueueTest, Expiry) { in TEST_F() argument
163 constexpr QuicTime::Delta expiry = QuicTime::Delta::FromMilliseconds(100); in TEST_F() local
164 queue_.SetMaxTimeInQueue(expiry); in TEST_F()
169 helper_.AdvanceTime(0.6 * expiry); in TEST_F()
171 helper_.AdvanceTime(0.6 * expiry); in TEST_F()
187 constexpr QuicTime::Delta expiry = QuicTime::Delta::FromMilliseconds(100); in TEST_F() local
188 queue_.SetMaxTimeInQueue(expiry); in TEST_F()
196 helper_.AdvanceTime(100 * expiry); in TEST_F()
273 constexpr QuicTime::Delta expiry = QuicTime::Delta::FromMilliseconds(100); in TEST_F() local
274 queue_.SetMaxTimeInQueue(expiry); in TEST_F()
[all …]
/external/python/google-auth-library-python/google/auth/compute_engine/
Dcredentials.py112 self.token, self.expiry = _metadata.get_service_account_token(
314 expiry = now + lifetime
318 "exp": _helpers.datetime_to_secs(expiry),
342 Tuple[str, datetime.datetime]: The ID token and the expiry of the ID token.
347 ValueError: If extracting expiry from the obtained ID token fails.
370 ValueError: If extracting expiry from the obtained ID token fails.
373 self.token, self.expiry = self._call_metadata_identity_endpoint(request)
376 access_token, expiry, _ = _client.id_token_jwt_grant(
380 self.expiry = expiry
/external/grpc-grpc/test/core/experiments/fixtures/
Dtest_experiments.yaml17 expiry: 2023/08/01
22 expiry: 2023/01/01
26 expiry: 2024/01/01
30 expiry: 2022/01/01
/external/linux-kselftest/tools/testing/selftests/kvm/x86_64/
Dvmx_preemption_timer_test.c128 * Ensure the exit from L2 is due to preemption timer expiry in l1_guest_code()
207 * If this stage 2 then we should verify the vmx pt expiry in main()
216 pr_info("Stage %d: L1 PT expiry TSC (%lu) , L1 TSC deadline (%lu)\n", in main()
219 pr_info("Stage %d: L2 PT expiry TSC (%lu) , L2 TSC deadline (%lu)\n", in main()
223 "Stage %d: L1 PT expiry TSC (%lu) < L1 TSC deadline (%lu)", in main()
227 "Stage %d: L2 PT expiry TSC (%lu) > L2 TSC deadline (%lu)", in main()
/external/autotest/client/site_tests/autoupdate_Backoff/
Dautoupdate_Backoff.py20 /var/lib/update_engine/prefs/backoff-expiry-time. It is stored as an
29 _BACKOFF_DISABLED = 'Resetting backoff expiry time as payload backoff is ' \
31 _BACKOFF_ENABLED = 'Incrementing the backoff expiry time'
34 _BACKOFF_EXPIRY_TIME_PREF = 'backoff-expiry-time'

12345678910>>...17