Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 59 for maxRetries (0.22 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/autoregistration/internal/health/controller.go

    	healthCondition controllers.Queue
    }
    
    // NewController returns a new Controller instance.
    func NewController(stateStore *state.Store, maxRetries int) *Controller {
    	c := &Controller{
    		stateStore: stateStore,
    	}
    	c.healthCondition = controllers.NewQueue("healthcheck",
    		controllers.WithMaxAttempts(maxRetries),
    		controllers.WithGenericReconciler(c.updateWorkloadEntryHealth))
    	return c
    }
    
    func (c *Controller) Run(stop <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. 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)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 26 06:43:17 UTC 2023
    - 810 bytes
    - Viewed (0)
  8. tests/testdata/config/destination-rule-all.yaml

          simple: ROUND_ROBIN
        connectionPool:
          tcp:
            maxConnections: 99
            connectTimeout: 6s
          http:
            http2MaxRequests: 33
            maxRequestsPerConnection: 65
            maxRetries: 4
            http1MaxPendingRequests: 14
        outlierDetection:
            interval: 8ms
            baseEjectionTime: 1m
            maxEjectionPercent: 11
        tls:
          mode: DISABLE
      subsets:
        - name: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. pkg/controller/serviceaccount/tokens_controller_test.go

    			controller, err := NewTokensController(informers.Core().V1().ServiceAccounts(), informers.Core().V1().Secrets(), client, TokensControllerOptions{TokenGenerator: generator, RootCA: []byte("CA Data"), MaxRetries: tc.MaxRetries})
    			if err != nil {
    				t.Fatalf("error creating Tokens controller: %v", err)
    			}
    
    			if tc.ExistingServiceAccount != nil {
    				serviceAccounts.Add(tc.ExistingServiceAccount)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  10. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top