Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BackoffDelay (0.15 sec)

  1. tests/integration/ambient/waypoint_test.go

    						}
    					} else {
    						return fmt.Errorf("failed to delete multiple gateways: %s not cleaned up", name)
    					}
    				}
    				return nil
    			}, retry.Timeout(15*time.Second), retry.BackoffDelay(time.Millisecond*100))
    
    			// delete all waypoints in namespace, so w3 should be deleted
    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"-n",
    				nsConfig.Name(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    	podName4 := EmptyUniquePodName
    	nodeName := EmptyNodeName
    
    	// delay after an operation is signaled to finish to ensure it actually
    	// finishes before running the next operation.
    	delay := 50 * time.Millisecond
    	backoffDelay := 500 * time.Millisecond
    
    	// fake operation1 for pod1 fails
    	operation1DoneCh := make(chan interface{})
    	operation1 := generateWaitWithErrorFunc(operation1DoneCh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    	istiodLabel   = "pilot"
    )
    
    var (
    	// the retry options for waiting for an individual component to be ready
    	componentDeployTimeout = retry.Timeout(1 * time.Minute)
    	componentDeployDelay   = retry.BackoffDelay(200 * time.Millisecond)
    
    	_ io.Closer       = &istioImpl{}
    	_ Instance        = &istioImpl{}
    	_ resource.Dumper = &istioImpl{}
    )
    
    type istioImpl struct {
    	id                   resource.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top