Home
last modified time | relevance | path

Searched refs:retryAfter (Results 1 – 25 of 1053) sorted by relevance

12345678910>>...43

/dports/net-mgmt/librenms/librenms-vendor-21.5.1/laravel/framework/src/Illuminate/Foundation/Http/Exceptions/
H A DMaintenanceModeException.php24 public $retryAfter; variable in Illuminate\\Foundation\\Http\\Exceptions\\MaintenanceModeException
37 * @param int|null $retryAfter
43 …public function __construct($time, $retryAfter = null, $message = null, Throwable $previous = null… argument
45 parent::__construct($retryAfter, $message, $previous, $code);
49 if ($retryAfter) {
50 $this->retryAfter = $retryAfter;
52 …vailableAt = Date::instance(Carbon::createFromTimestamp($time)->addRealSeconds($this->retryAfter));
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/laravel/framework/src/Illuminate/Routing/Middleware/
H A DThrottleRequests.php190 $retryAfter = $this->getTimeUntilNextRetry($key);
194 $this->calculateRemainingAttempts($key, $maxAttempts, $retryAfter),
195 $retryAfter
220 * @param int|null $retryAfter
226 $this->getHeaders($maxAttempts, $remainingAttempts, $retryAfter, $response)
237 * @param int|null $retryAfter
243 $retryAfter = null, argument
257 if (! is_null($retryAfter)) {
258 $headers['Retry-After'] = $retryAfter;
259 $headers['X-RateLimit-Reset'] = $this->availableAt($retryAfter);
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/k8s.io/client-go/rest/
H A Dwith_retry.go89 …BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryAfter, url string, b…
126 retryAfter := &RetryAfter{Attempt: r.attempts}
128 return retryAfter, false
140 return retryAfter, false
150 return retryAfter, false
153 retryAfter.Wait = time.Duration(seconds) * time.Second
154 retryAfter.Reason = getRetryReason(r.attempts, seconds, resp, err)
155 return retryAfter, true
158 func (r *withRetry) BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryA…
171 …klog.V(4).Infof("Got a Retry-After %s response for attempt %d to %v", retryAfter.Wait, retryAfter.…
[all …]
/dports/net/traefik/traefik-2.6.1/vendor/k8s.io/client-go/rest/
H A Dwith_retry.go89 …BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryAfter, url string, b…
126 retryAfter := &RetryAfter{Attempt: r.attempts}
128 return retryAfter, false
140 return retryAfter, false
150 return retryAfter, false
153 retryAfter.Wait = time.Duration(seconds) * time.Second
154 retryAfter.Reason = getRetryReason(r.attempts, seconds, resp, err)
155 return retryAfter, true
158 func (r *withRetry) BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryA…
171 …klog.V(4).Infof("Got a Retry-After %s response for attempt %d to %v", retryAfter.Wait, retryAfter.…
[all …]
/dports/sysutils/doctl/doctl-1.68.0/vendor/k8s.io/client-go/rest/
H A Dwith_retry.go89 …BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryAfter, url string, b…
126 retryAfter := &RetryAfter{Attempt: r.attempts}
128 return retryAfter, false
140 return retryAfter, false
150 return retryAfter, false
153 retryAfter.Wait = time.Duration(seconds) * time.Second
154 retryAfter.Reason = getRetryReason(r.attempts, seconds, resp, err)
155 return retryAfter, true
158 func (r *withRetry) BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryA…
171 …klog.V(4).Infof("Got a Retry-After %s response for attempt %d to %v", retryAfter.Wait, retryAfter.…
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/staging/src/k8s.io/client-go/rest/
H A Dwith_retry.go89 …BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryAfter, url string, b…
126 retryAfter := &RetryAfter{Attempt: r.attempts}
128 return retryAfter, false
140 return retryAfter, false
150 return retryAfter, false
153 retryAfter.Wait = time.Duration(seconds) * time.Second
154 retryAfter.Reason = getRetryReason(r.attempts, seconds, resp, err)
155 return retryAfter, true
158 func (r *withRetry) BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryA…
171 …klog.V(4).Infof("Got a Retry-After %s response for attempt %d to %v", retryAfter.Wait, retryAfter.…
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/k8s.io/client-go/rest/
H A Dwith_retry.go89 …BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryAfter, url string, b…
126 retryAfter := &RetryAfter{Attempt: r.attempts}
128 return retryAfter, false
140 return retryAfter, false
150 return retryAfter, false
153 retryAfter.Wait = time.Duration(seconds) * time.Second
154 retryAfter.Reason = getRetryReason(r.attempts, seconds, resp, err)
155 return retryAfter, true
158 func (r *withRetry) BeforeNextRetry(ctx context.Context, backoff BackoffManager, retryAfter *RetryA…
171 …klog.V(4).Infof("Got a Retry-After %s response for attempt %d to %v", retryAfter.Wait, retryAfter.…
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/vendor/symfony/rate-limiter/
H A DRateLimit.php22 private $retryAfter; variable in Symfony\\Component\\RateLimiter\\RateLimit
26 …public function __construct(int $availableTokens, \DateTimeImmutable $retryAfter, bool $accepted, … argument
29 $this->retryAfter = $retryAfter;
55 return $this->retryAfter;
70 $delta = $this->retryAfter->format('U.u') - microtime(true);
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Exception/
H A DServiceUnavailableHttpException.php20 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
25 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
28 if ($retryAfter) {
29 $headers = ['Retry-After' => $retryAfter];
H A DTooManyRequestsHttpException.php22 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
27 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
30 if ($retryAfter) {
31 $headers = ['Retry-After' => $retryAfter];
/dports/www/phpbb3/phpBB3/vendor/symfony/http-kernel/Exception/
H A DServiceUnavailableHttpException.php20 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
25 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
28 if ($retryAfter) {
29 $headers = ['Retry-After' => $retryAfter];
H A DTooManyRequestsHttpException.php22 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
27 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
30 if ($retryAfter) {
31 $headers = ['Retry-After' => $retryAfter];
/dports/www/bolt/bolt-2.2.24/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Exception/
H A DServiceUnavailableHttpException.php24 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
29 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
32 if ($retryAfter) {
33 $headers = array('Retry-After' => $retryAfter);
H A DTooManyRequestsHttpException.php26 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
31 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
34 if ($retryAfter) {
35 $headers = array('Retry-After' => $retryAfter);
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Exception/
H A DServiceUnavailableHttpException.php20 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
25 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
28 if ($retryAfter) {
29 $headers = ['Retry-After' => $retryAfter];
H A DTooManyRequestsHttpException.php22 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
27 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
30 if ($retryAfter) {
31 $headers = ['Retry-After' => $retryAfter];
/dports/devel/gitlist/gitlist/vendor/symfony/http-kernel/Exception/
H A DServiceUnavailableHttpException.php24 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
29 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
32 if ($retryAfter) {
33 $headers = array('Retry-After' => $retryAfter);
H A DTooManyRequestsHttpException.php26 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
31 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
34 if ($retryAfter) {
35 $headers = array('Retry-After' => $retryAfter);
/dports/www/drupal8/drupal-8.9.20/vendor/symfony/http-kernel/Exception/
H A DServiceUnavailableHttpException.php20 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
25 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
28 if ($retryAfter) {
29 $headers = ['Retry-After' => $retryAfter];
H A DTooManyRequestsHttpException.php22 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
27 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
30 if ($retryAfter) {
31 $headers = ['Retry-After' => $retryAfter];
/dports/www/itop/web/lib/silex/vendor/symfony/http-kernel/Exception/
H A DServiceUnavailableHttpException.php20 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
25 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
28 if ($retryAfter) {
29 $headers = array('Retry-After' => $retryAfter);
/dports/www/itop/web/lib/silex/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Exception/
H A DServiceUnavailableHttpException.php24 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
29 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
32 if ($retryAfter) {
33 $headers = array('Retry-After' => $retryAfter);
H A DTooManyRequestsHttpException.php26 …* @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be …
31 …public function __construct($retryAfter = null, $message = null, \Exception $previous = null, $cod… argument
34 if ($retryAfter) {
35 $headers = array('Retry-After' => $retryAfter);
/dports/net-mgmt/librenms/librenms-vendor-21.5.1/symfony/http-kernel/Exception/
H A DServiceUnavailableHttpException.php20 …* @param int|string|null $retryAfter The number of seconds or HTTP-date after which the request ma…
25 …public function __construct($retryAfter = null, ?string $message = '', \Throwable $previous = null… argument
27 if ($retryAfter) {
28 $headers['Retry-After'] = $retryAfter;
/dports/www/drupal9/drupal-9.2.10/vendor/symfony/http-kernel/Exception/
H A DServiceUnavailableHttpException.php20 …* @param int|string|null $retryAfter The number of seconds or HTTP-date after which the request ma…
25 …public function __construct($retryAfter = null, ?string $message = '', \Throwable $previous = null… argument
27 if ($retryAfter) {
28 $headers['Retry-After'] = $retryAfter;

12345678910>>...43