Home
last modified time | relevance | path

Searched refs:max_attempts (Results 1 – 25 of 29) sorted by relevance

12

/external/grpc-grpc/src/core/ext/filters/client_channel/
Dmethod_params.cc92 if (retry_policy->max_attempts != 0) return nullptr; // Duplicate. in ParseRetryPolicy()
94 retry_policy->max_attempts = gpr_parse_nonnegative_int(sub_field->value); in ParseRetryPolicy()
95 if (retry_policy->max_attempts <= 1) return nullptr; in ParseRetryPolicy()
96 if (retry_policy->max_attempts > MAX_MAX_RETRY_ATTEMPTS) { in ParseRetryPolicy()
100 retry_policy->max_attempts = MAX_MAX_RETRY_ATTEMPTS; in ParseRetryPolicy()
140 if (retry_policy->max_attempts == 0 || retry_policy->initial_backoff == 0 || in ParseRetryPolicy()
Dmethod_params.h42 int max_attempts = 0; member
Dclient_channel.cc1503 if (calld->num_attempts_completed >= retry_policy->max_attempts) { in maybe_retry()
1506 calld, retry_policy->max_attempts); in maybe_retry()
/external/openscreen/testing/util/
Dtask_util.h19 int max_attempts = 8) {
23 << max_attempts;
28 } while (attempts++ < max_attempts);
/external/rust/crates/grpcio-sys/grpc/src/core/ext/filters/client_channel/
Dresolver_result_parsing.cc84 retry_policy->max_attempts = in ParseRetryPolicy()
86 if (retry_policy->max_attempts <= 1) { in ParseRetryPolicy()
89 } else if (retry_policy->max_attempts > MAX_MAX_RETRY_ATTEMPTS) { in ParseRetryPolicy()
93 retry_policy->max_attempts = MAX_MAX_RETRY_ATTEMPTS; in ParseRetryPolicy()
160 if (retry_policy->max_attempts == 0 || retry_policy->initial_backoff == 0 || in ParseRetryPolicy()
Dresolver_result_parsing.h85 int max_attempts = 0; member
Dclient_channel.cc3766 if (num_attempts_completed_ >= retry_policy_->max_attempts) { in MaybeRetry()
3769 chand_, this, retry_policy_->max_attempts); in MaybeRetry()
/external/fonttools/Lib/fontTools/colorLib/
Dgeometry.py128 max_attempts = 2
129 for _ in range(max_attempts):
/external/tensorflow/tensorflow/core/debug/
Ddebug_grpc_testlib.cc161 const size_t max_attempts) { in PollTillFirstRequestSucceeds() argument
171 while (n_attempts++ < max_attempts) { in PollTillFirstRequestSucceeds()
Ddebug_grpc_testlib.h81 const size_t max_attempts);
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DSampleDistortedBoundingBoxV2.pbtxt75 name: "max_attempts"
DStatelessSampleDistortedBoundingBox.pbtxt75 name: "max_attempts"
DSampleDistortedBoundingBox.pbtxt78 name: "max_attempts"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DSampleDistortedBoundingBox.pbtxt78 name: "max_attempts"
DSampleDistortedBoundingBoxV2.pbtxt75 name: "max_attempts"
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_SampleDistortedBoundingBoxV2.pbtxt75 name: "max_attempts"
78 of the specified constraints. After `max_attempts` failures, return the entire
Dapi_def_SampleDistortedBoundingBox.pbtxt75 name: "max_attempts"
78 of the specified constraints. After `max_attempts` failures, return the entire
Dapi_def_StatelessSampleDistortedBoundingBox.pbtxt68 name: "max_attempts"
71 of the specified constraints. After `max_attempts` failures, return the entire
/external/tensorflow/tensorflow/python/debug/lib/
Dgrpc_debug_test_server.py428 def _poll_server_till_success(max_attempts, argument
455 for poll_count in range(max_attempts):
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbutil.py1494 def wait_for_file_on_target(testcase, file_path, max_attempts=6): argument
1495 for i in range(max_attempts):
1499 if i < max_attempts:
1506 (file_path, max_attempts))
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_impl.py3298 max_attempts=None, argument
3400 max_attempts=max_attempts,
3413 max_attempts=None, argument
3524 max_attempts=max_attempts,
3542 max_attempts=None, argument
3639 max_attempts=max_attempts,
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.image.pbtxt221 …\', \'min_object_covered\', \'aspect_ratio_range\', \'area_range\', \'max_attempts\', \'use_image_…
269 …\', \'min_object_covered\', \'aspect_ratio_range\', \'area_range\', \'max_attempts\', \'use_image_…
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/
Drun_xds_tests.py688 max_attempts = 40
689 for i in range(max_attempts):
704 raise Exception('RPC failures persisted through %d retries' % max_attempts)
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.image.pbtxt249 …\', \'min_object_covered\', \'aspect_ratio_range\', \'area_range\', \'max_attempts\', \'use_image_…
Dtensorflow.raw_ops.pbtxt3873 …\', \'min_object_covered\', \'aspect_ratio_range\', \'area_range\', \'max_attempts\', \'use_image_…
3877 …red\', \'seed\', \'seed2\', \'aspect_ratio_range\', \'area_range\', \'max_attempts\', \'use_image_…
4653 …object_covered\', \'seed\', \'aspect_ratio_range\', \'area_range\', \'max_attempts\', \'use_image_…

12