Home
last modified time | relevance | path

Searched refs:retry (Results 1 – 25 of 67) sorted by relevance

123

/plugin/davcal/vendor/sabre/http/lib/
H A DClient.php97 $retry = false;
131 $this->emit('error', [$request, $response, &$retry, $retryCount]);
132 $this->emit('error:' . $code, [$request, $response, &$retry, $retryCount]);
138 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
143 if (!$retry) {
149 if ($retry) {
153 } while ($retry || $doRedirect);
231 $retry = false;
236 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
238 if ($retry) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudFunctions/
DFailurePolicy.php28 public function setRetry(Retry $retry) argument
30 $this->retry = $retry;
37 return $this->retry;
/plugin/webdav/vendor/sabre/http/lib/
DClient.php133 $this->emit('error', [$request, $response, &$retry, $retryCount]);
134 $this->emit('error:' . $code, [$request, $response, &$retry, $retryCount]);
140 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
145 if (!$retry) {
151 if ($retry) {
155 } while ($retry || $doRedirect);
233 $retry = false;
238 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
240 if ($retry) {
254 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
[all …]
/plugin/aichat/Model/
DAbstractModel.php265 * @param int $retry How often this request has been retried, do not set externally
269 protected function sendAPIRequest($method, $url, $data, $retry = 0) argument
272 if ($retry === 0) {
275 sleep($retry); // wait a bit between retries
298 if ($retry < self::MAX_RETRIES) {
299 return $this->sendAPIRequest($method, $url, $data, $retry + 1);
323 if ($retry < self::MAX_RETRIES) {
324 return $this->sendAPIRequest($method, $url, $data, $retry + 1);
/plugin/aichat/Storage/
DQdrantStorage.php50 protected function runQuery($endpoint, mixed $data, $method = 'POST', $retry = 0) argument
65 if($retry < 3) {
66 sleep(1 + $retry);
67 return $this->runQuery($endpoint, $data, $method, $retry + 1);
78 if($retry < 3) {
79 sleep(1 + $retry);
80 return $this->runQuery($endpoint, $data, $method, $retry + 1);
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
DPushoverHandler.php39 private $retry; variable in Monolog\\Handler\\PushoverHandler
92 …* @param int $retry The retry parameter specifies how often (in seconds) the …
110 int $retry = 30, argument
135 $this->retry = $retry;
169 $dataArray['retry'] = $this->retry;
/plugin/google_maps/
Dscript.js34 function queryGoogleGeo(map, bounds, locations, index, zoom, retry) argument
53 if (retry++ >= GMAPS_MAX_RETRY_COUNT)
59 setTimeout(queryGoogleGeo, GMAPS_RETRY_DELAY, map, bounds, locations, index, zoom, retry);
103 queryGoogleGeo(map, bounds, locations, index + 1, zoom, retry);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
DIlmNamespace.asciidoc28 * <<Elasticsearch_Namespaces_IlmNamespaceretry_retry,`retry()`>>
129 .`retry(array $params = [])`
134 …x'] = (string) The name of the indices (comma-separated) whose failed lifecycle step is to be retry
/plugin/asciidocjs/node_modules/async/
Dretry.js6 exports.default = retry;
110 function retry(opts, task, callback) { function
Dindex.js7 …setImmediate = exports.series = exports.seq = exports.retryable = exports.retry = exports.rejectSe…
437 retry: _retry2.default, property
543 exports.retry = _retry2.default;
/plugin/asciidocjs/node_modules/neo-async/
Dretry.js3 module.exports = require('./async').retry;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/
Dpacker_cache.sh14 (retry 2 docker pull "${di}") || echo "Error pulling ${di} Docker image, we continue"
/plugin/diagramsnet/lib/js/diagramly/
DDropboxClient.js170 error({message: mxResources.get('accessDenied'), retry: auth}); property
198 error({message: mxResources.get('accessDenied'), retry: auth}); property
239 error({message: mxResources.get('serviceUnavailableOrBlocked'), retry: auth}); property
247 error({message: mxResources.get('accessDenied'), retry: auth}); property
273 error({code: App.ERROR_TIMEOUT, retry: fn}); property
311 error({message: mxResources.get('accessDenied'), retry: mxUtils.bind(this, function() property
528 error({message: mxResources.get('accessDenied'), retry: mxUtils.bind(this, function() property
DGitHubClient.js171 error({message: mxResources.get('accessDenied'), retry: auth}); property
206 error({message: mxResources.get('serviceUnavailableOrBlocked'), retry: auth}); property
214 error({message: mxResources.get('accessDenied'), retry: auth}); property
261 error({code: App.ERROR_TIMEOUT, retry: fn}); property
293 …error({code: req.getStatus(), message: mxResources.get('accessDenied'), retry: mxUtils.bind(this, … property
DGitLabClient.js102 error({message: mxResources.get('accessDenied'), retry: auth}); property
128 error({message: mxResources.get('accessDenied'), retry: auth}); property
162 error({message: mxResources.get('serviceUnavailableOrBlocked'), retry: auth}); property
171 error({message: mxResources.get('accessDenied'), retry: auth}); property
231 error({message: mxResources.get('accessDenied'), retry: mxUtils.bind(this, function() property
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
Dset-retries.asciidoc4 By default, the client will retry `n` times, where `n = number of nodes` in your
5 cluster. A retry is only performed if the operation results in a "hard"
/plugin/diagramsnet/lib/math/extensions/a11y/
Dauto-collapse.js125 retry: !1,
128 l.config.disabled || (l.running ? l.retry = !0 : (l.timer && clearTimeout(l.timer),
137 l.running = !1, c.processSectionDelay = l.saved_delay, l.retry && (l.retry = !1,
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DClientTest.php234 … $client->on('error', function($request, $response, &$retry, $retryCount) use (&$errorCalled) {
237 $retry = true;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudBuild/Resource/
DProjectsLocationsBuilds.php157 public function retry($name, RetryBuildRequest $postBody, $optParams = []) function in Google\\Service\\CloudBuild\\Resource\\ProjectsLocationsBuilds
DProjectsBuilds.php157 public function retry($projectId, $id, RetryBuildRequest $postBody, $optParams = []) function in Google\\Service\\CloudBuild\\Resource\\ProjectsBuilds
/plugin/authgooglesheets/vendor/google/apiclient-services/src/
DCloudBuild.php216 ],'retry' => [
217 'path' => 'v1/projects/{projectId}/builds/{id}:retry',
545 ],'retry' => [
546 'path' => 'v1/{+name}:retry',
/plugin/structsection/
Dyarn.lock108 "@humanwhocodes/retry": "npm:^0.4.0"
120 "@humanwhocodes/retry@npm:^0.4.0, @humanwhocodes/retry@npm:^0.4.2":
122 resolution: "@humanwhocodes/retry@npm:0.4.3"
319 "@humanwhocodes/retry": "npm:^0.4.2"
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Namespaces/
DIlmNamespace.php205 public function retry(array $params = []) function in Elasticsearch\\Namespaces\\IlmNamespace
/plugin/aichat/
DAGENTS.md66 - Handles API communication with retry logic (MAX_RETRIES = 3)
159 - API retries use exponential backoff (sleep for retry count seconds)
/plugin/authgooglesheets/vendor/guzzlehttp/guzzle/src/
DMiddleware.php168 public static function retry(callable $decider, callable $delay = null) function in GuzzleHttp\\Middleware

123