Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for max_retries (2.3 sec)

  1. istioctl/pkg/describe/testdata/describe/http_config.json

                  "thresholds": [
                    {
                      "max_connections": 4294967295,
                      "max_pending_requests": 4294967295,
                      "max_requests": 4294967295,
                      "max_retries": 4294967295,
                      "track_remaining": true
                    }
                  ]
                },
                "metadata": {
                  "filter_metadata": {
                    "istio": {
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 13.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTreeConnection.java

            String fullPath = "\\" + loc.getServer() + "\\" + loc.getShare() + loc.getUNCPath();
            int maxRetries = this.ctx.getConfig().getMaxRequestRetries();
            for ( int retries = 1; retries <= maxRetries; retries++ ) {
    
                if ( rpath != null ) {
                    rpath.setFullUNCPath(null, null, fullPath);
                }
    
                try {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.test-retry.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("org.gradle.test-retry")
    }
    
    if (System.getenv().containsKey("CI")) {
        tasks.withType<Test>().configureEach {
            retry {
                maxRetries.set(2)
            }
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 26 06:43:17 GMT 2023
    - 810 bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            configureJvmForTest()
            addOsAsInputs()
    
            if (BuildEnvironment.isCiServer) {
                configureRerun()
                retry {
                    maxRetries.convention(determineMaxRetries())
                    maxFailures = determineMaxFailures()
                }
                doFirst {
                    logger.lifecycle("maxParallelForks for '$path' is $maxParallelForks")
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        to a backend.
                                      format: int32
                                      type: integer
                                    maxRetries:
                                      description: Maximum number of retries that can
                                        be outstanding to all hosts in a cluster at a
                                        given time.
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                        to a backend.
                                      format: int32
                                      type: integer
                                    maxRetries:
                                      description: Maximum number of retries that can
                                        be outstanding to all hosts in a cluster at a
                                        given time.
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  7. internal/event/target/elasticsearch.go

    }
    
    func newClientV7(args ElasticsearchArgs) (*esClientV7, error) {
    	// Client options
    	elasticConfig := elasticsearch7.Config{
    		Addresses:  []string{args.URL.String()},
    		Transport:  args.Transport,
    		MaxRetries: 10,
    	}
    	// Set basic auth
    	if args.Username != "" && args.Password != "" {
    		elasticConfig.Username = args.Username
    		elasticConfig.Password = args.Password
    	}
    	// Create a client
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 15K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    description: The idle timeout for upstream connection pool connections. type: string maxConcurrentStreams: format: int32 type: integer maxRequestsPerConnec: description: Maximum number of requests per connection to a backend. format: int32 type: integer maxRetries: description: Maximum number of retries that can be outstanding to all hosts in a cluster at a given time. format: int32 type: integer useClientProtocol: description: If set to true, client protocol will be preserved while initiating connection...
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top