Home
last modified time | relevance | path

Searched refs:retryCount (Results 1 – 14 of 14) sorted by relevance

/plugin/davcal/vendor/sabre/http/lib/
H A DClient.php91 $retryCount = 0;
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]);
150 $retryCount++;
227 $retryCount,
236 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
239 $retryCount++;
240 … $this->sendASyncInternal($request, $successCallback, $errorCallback, $retryCount);
252 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
[all …]
/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]);
152 $retryCount++;
229 $retryCount,
238 $this->emit('exception', [$request, $e, &$retry, $retryCount]);
241 $retryCount++;
242 … $this->sendAsyncInternal($request, $successCallback, $errorCallback, $retryCount);
254 $this->emit('error', [$request, $curlResult['response'], &$retry, $retryCount]);
255 …it('error:' . $curlResult['http_code'], [$request, $curlResult['response'], &$retry, $retryCount]);
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudScheduler/
DRetryConfig.php41 public $retryCount; variable in Google\\Service\\CloudScheduler\\RetryConfig
102 public function setRetryCount($retryCount) argument
104 $this->retryCount = $retryCount;
111 return $this->retryCount;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/
DGoogleCloudDataplexV1Job.php37 public $retryCount; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1Job
104 public function setRetryCount($retryCount) argument
106 $this->retryCount = $retryCount;
113 return $this->retryCount;
/plugin/diagramsnet/lib/
DelectronFilesWorker.js12 var retryCount = 0;
48 retryCount++;
50 if (retryCount < 3)
/plugin/diagramsnet/lib/js/diagramly/
DDrawioFileSync.js603 DrawioFileSync.prototype.optimisticSync = function(retryCount) argument
607 retryCount = (retryCount != null) ? retryCount : 0;
609 if (retryCount < this.maxOptimisticReloadRetries)
625 this.optimisticSync(retryCount + 1);
640 }), (retryCount + 1) * this.file.optimisticSyncDelay);
645 EditorUi.debug('Sync.optimisticSync', [this], 'retryCount', retryCount);
DDriveClient.js321 var retryCount = 0;
459 resp.error.code != 400 && this.currentRequest == reqObj && retryCount < this.maxRetries)
461 retryCount++;
464 Math.round(Math.pow(2, retryCount) *
1089 var retryCount = 0;
1226 if (retryCount < this.maxRetries && req != null && req.getStatus() == 403)
1228 retryCount++;
1230 var delay = retryCount * 2 * this.coolOff * jitter;
1277 var retryCount = 0;
1652 if (retryCount < this.staleEtagMaxRetries)
[all …]
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DClientTest.php234 … $client->on('error', function($request, $response, &$retry, $retryCount) use (&$errorCalled) {
/plugin/webdav/vendor/sabre/http/
DREADME.md221 $client->on('error', function($request, $response, &$retry, $retryCount) {
228 $client->on('error:401', function($request, $response, &$retry, $retryCount) {
233 if ($retryCount > 1) {
/plugin/davcal/vendor/sabre/http/
H A DREADME.md221 $client->on('error', function($request, $response, &$retry, $retryCount) {
228 $client->on('error:401', function($request, $response, &$retry, $retryCount) {
233 if ($retryCount > 1) {
/plugin/jcapture/lib/
Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/lib/
Dhttpclient-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/diagramsnet/lib/WEB-INF/lib/
Dhttpclient-4.5.5.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/plugin/asciidocjs/node_modules/async/dist/
Dasync.mjs4594 * interval: function(retryCount) {
4595 * return 50 * Math.pow(2, retryCount);