Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 754 for retryOn (0.14 sec)

  1. pkg/controller/garbagecollector/garbagecollector.go

    			// wait for caches to fill for a while (our sync period) before attempting to rediscover resources and retry syncing.
    			// this protects us from deadlocks where available resources changed and one of our informer caches will never fill.
    			// informers keep attempting to sync in the background, so retrying doesn't interrupt them.
    			// the call to resyncMonitors on the reattempt will no-op for resources that still exist.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. pkg/test/echo/server/endpoint/udp.go

    func (s *udpInstance) awaitReady(onReady OnReadyFunc, address string) {
    	defer onReady()
    
    	err := retry.UntilSuccess(func() error {
    		conn, err := net.Dial("udp", address)
    		if err != nil {
    			return err
    		}
    		defer func() { _ = conn.Close() }()
    
    		// Server is up now, we're ready.
    		return nil
    	}, retry.Timeout(readyTimeout), retry.Delay(readyInterval))
    
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	}
    
    	_, err := from.Call(echo.CallOptions{
    		Address: address,
    		To:      to,
    		Port: echo.Port{
    			Name: "http",
    		},
    		Check: checker,
    		Retry: echo.Retry{
    			Options: []retry.Option{retryDelay, retryTimeout},
    		},
    	})
    	if err != nil {
    		t.Fatalf("failed calling host %s: %v\nCluster Details:\n%s", address, err,
    			getClusterDetailsYAML(t, address, from, to))
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. tests/integration/operator/uninstall_test.go

    					t.Errorf("failed to delete iopfile: %v", err)
    				}
    
    				retry.UntilSuccessOrFail(t, func() error {
    					exist, checkErr := checkIopExist(cs, iopName)
    					if checkErr != nil {
    						return checkErr
    					}
    
    					if exist {
    						return fmt.Errorf("fail to delete iop")
    					}
    
    					return nil
    				}, retry.Timeout(deletionTimeout), retry.Delay(retryDelay))
    			})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/gatewayclass_test.go

    	gateway "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestClassController(t *testing.T) {
    	client := kube.NewFakeClient()
    	cc := NewClassController(client)
    	classes := clienttest.Wrap(t, cc.classes)
    	stop := test.NewStop(t)
    	client.RunAndWait(stop)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/sidecar.go

    	// has been accepted.
    	WaitForConfig(accept func(*admin.ConfigDump) (bool, error), options ...retry.Option) error
    	WaitForConfigOrFail(t test.Failer, accept func(*admin.ConfigDump) (bool, error), options ...retry.Option)
    
    	// Clusters for the Envoy instance
    	Clusters() (*admin.Clusters, error)
    	ClustersOrFail(t test.Failer) *admin.Clusters
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 03:49:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. cmd/batch-replicate_gen.go

    				return
    			}
    		case "Notify":
    			err = z.Notify.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "Notify")
    				return
    			}
    		case "Retry":
    			err = z.Retry.DecodeMsg(dc)
    			if err != nil {
    				err = msgp.WrapError(err, "Retry")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 18:51:46 UTC 2023
    - 40.6K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/cache/desired_state_of_wold_selinux_metrics.go

    			Name:           "volume_manager_selinux_container_errors_total",
    			Help:           "Number of errors when kubelet cannot compute SELinux context for a container. Kubelet can't start such a Pod then and it will retry, therefore value of this metric may not represent the actual nr. of containers.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"access_mode"},
    	)
    	seLinuxContainerContextWarnings = compbasemetrics.NewGaugeVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 12:16:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tests/integration/pilot/workloadentry_test.go

    								Port:                    ports.HTTP,
    								Scheme:                  scheme.HTTP,
    								NewConnectionPerRequest: true,
    								Retry:                   echo.Retry{Options: []retry.Option{multiclusterRetryDelay, retry.Timeout(time.Minute)}},
    								Count:                   10,
    							})
    						})
    					}
    				})
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. tests/integration/pilot/proxyconfig/proxyconfig_test.go

    	t.Helper()
    	for _, i := range instances {
    		i := i
    		attempts := 0
    		retry.UntilSuccessOrFail(t, func() error {
    			// to avoid sleeping for ProxyConfig propagation, we
    			// can just re-trigger injection on every retry.
    			if attempts > 0 {
    				err := i.Restart()
    				if err != nil {
    					return fmt.Errorf("failed to restart echo instance: %v", err)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top