Home
last modified time | relevance | path

Searched refs:apiMethod (Results 1 – 3 of 3) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/OSConfig/
DGoogleCloudOsconfigV1OSPolicyAssignmentOperationMetadata.php25 public $apiMethod; variable in Google\\Service\\OSConfig\\GoogleCloudOsconfigV1OSPolicyAssignmentOperationMetadata
46 public function setApiMethod($apiMethod) argument
48 $this->apiMethod = $apiMethod;
55 return $this->apiMethod;
DOSPolicyAssignmentOperationMetadata.php25 public $apiMethod; variable in Google\\Service\\OSConfig\\OSPolicyAssignmentOperationMetadata
46 public function setApiMethod($apiMethod) argument
48 $this->apiMethod = $apiMethod;
55 return $this->apiMethod;
/plugin/asciidocjs/node_modules/async/dist/
Dasync.mjs4580 * // try calling apiMethod 3 times
4581 * async.retry(3, apiMethod, function(err, result) {
4585 * // try calling apiMethod 3 times, waiting 200 ms between each retry
4586 * async.retry({times: 3, interval: 200}, apiMethod, function(err, result) {
4590 * // try calling apiMethod 10 times with exponential backoff
4597 * }, apiMethod, function(err, result) {
4601 * // try calling apiMethod the default 5 times no delay between each retry
4602 * async.retry(apiMethod, function(err, result) {
4606 * // try calling apiMethod only when error condition satisfies, all other
4612 * }, apiMethod, function(err, result) {