Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for maxRetries (0.36 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

            0 * delegate._
    
            where:
            [maxRetries, exception, effectiveRetries] << retryCombinations()
        }
    
        @Unroll("can resolve component meta data (max retries = #maxRetries, exception=#exception)")
        def "can resolve component meta data"() {
            access = createAccess(maxRetries)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/namespacecontroller.go

    	CACertNamespaceConfigMap = "istio-ca-root-cert"
    
    	// maxRetries is the number of times a namespace will be retried before it is dropped out of the queue.
    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the
    	// sequence of delays between successive queuing of a namespace.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms
    	maxRetries = 5
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/controller/serviceaccount/tokens_controller.go

    	maxRetries := options.MaxRetries
    	if maxRetries == 0 {
    		maxRetries = 10
    	}
    
    	e := &TokensController{
    		client: cl,
    		token:  options.TokenGenerator,
    		rootCA: options.RootCA,
    
    		syncServiceAccountQueue: workqueue.NewTypedRateLimitingQueueWithConfig(
    			workqueue.DefaultTypedControllerRateLimiter[serviceAccountQueueKey](),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util_test.go

    					Http: &networking.ConnectionPoolSettings_HTTPSettings{
    						MaxRetries: 10,
    					},
    				},
    			},
    			subset: nil,
    			port:   nil,
    			expected: &networking.TrafficPolicy{
    				ConnectionPool: &networking.ConnectionPoolSettings{
    					Http: &networking.ConnectionPoolSettings_HTTPSettings{
    						MaxRetries: 10,
    					},
    				},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/TestRetryPluginSmokeTest.groovy

                    def markerFile = file("marker.file")
                    doFirst {
                        markerFile.delete()
                    }
    
                    useJUnitPlatform()
                    retry {
                        maxRetries = 2
                    }
                }
            """
    
            when:
            def result = runner('test').buildAndFail()
            then:
            assertTaskFailed(result, ":test")
            assertHasFlakyOutput(result)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_traffic_policy.go

    		}
    
    		// FIXME: zero is a valid value if explicitly set, otherwise we want to use the default
    		if settings.Http.MaxRetries > 0 {
    			threshold.MaxRetries = &wrapperspb.UInt32Value{Value: uint32(settings.Http.MaxRetries)}
    		}
    
    		idleTimeout = settings.Http.IdleTimeout
    		maxRequestsPerConnection = uint32(settings.Http.MaxRequestsPerConnection)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/controller/repairip.go

    )
    
    const (
    	// maxRetries is the number of times a service will be retried before it is dropped out of the queue.
    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the
    	// sequence of delays between successive queuings of a service.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    	workers    = 5
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. pkg/controller/servicecidrs/servicecidrs_controller.go

    	"k8s.io/kubernetes/pkg/util/iptree"
    	netutils "k8s.io/utils/net"
    )
    
    const (
    	// maxRetries is the max number of times a service object will be retried before it is dropped out of the queue.
    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the
    	// sequence of delays between successive queuings of a service.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    	}
    	if ec.CircuitBreakers != nil {
    		if ec.CircuitBreakers.Thresholds[0].MaxRetries.Value != gc.CircuitBreakers.Thresholds[0].MaxRetries.Value {
    			t.Errorf("Unexpected circuit breaker thresholds want %v, got %v", ec.CircuitBreakers.Thresholds[0].MaxRetries, gc.CircuitBreakers.Thresholds[0].MaxRetries)
    		}
    	}
    	if ec.AltStatName != "" {
    		if ec.AltStatName != gc.AltStatName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            where:
            protocol << ['http', 'https']
        }
    
        def "fails single application dependency resolution if #protocol connection exceeds timeout (retries = #maxRetries)"() {
            maxHttpRetries = maxRetries
    
            given:
            maxHttpRetries.times {
                blockingForProtocol(protocol, moduleA.pom)
            }
            buildFile << """
                ${mavenRepository(mavenHttpRepo)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top