Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 195 for Petry (0.29 sec)

  1. tests/integration/pilot/multi_version_revision_test.go

    					Run(func(t framework.TestContext) {
    						retry.UntilSuccessOrFail(t, func() error {
    							result, err := from.Call(echo.CallOptions{
    								To:    to,
    								Count: 1,
    								Port: echo.Port{
    									Name: trafficType,
    								},
    								Retry: echo.Retry{
    									NoRetry: true,
    								},
    							})
    							return check.And(
    								check.NoError(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tests/integration/telemetry/tracing/otelcollector/tracing_test.go

    									}
    									if !tracing.VerifyOtelEchoTraces(ctx, appNsInst.Name(), cluster.Name(), traces) {
    										return errors.New("cannot find expected traces")
    									}
    									return nil
    								}, retry.Delay(3*time.Second), retry.Timeout(80*time.Second))
    							})
    						}
    					})
    			}
    		})
    }
    
    func TestMain(m *testing.M) {
    	framework.NewSuite(m).
    		Label(label.CustomSetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:30 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. manifests/charts/base/crds/crd-all.gen.yaml

                              description: Specifies the conditions under which retry
                                takes place.
                              type: string
                            retryRemoteLocalities:
                              description: Flag to specify whether the retries should
                                retry to other localities.
                              nullable: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  4. tests/integration/security/cacert_rotation/main_test.go

    	retry.UntilOrFail(t, func() bool {
    		updateTime, err := getWorkloadCertLastUpdateTime(t, from, istioCtl)
    		if err != nil {
    			t.Logf("failed to get workload cert last update time: %v", err)
    			return false
    		}
    
    		// retry when workload cert is not updated
    		if updateTime.After(lastUpdateTime) {
    			lastUpdateTime = updateTime
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. 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)
  6. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                              description: Specifies the conditions under which retry
                                takes place.
                              type: string
                            retryRemoteLocalities:
                              description: Flag to specify whether the retries should
                                retry to other localities.
                              nullable: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  7. 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)
  8. bin/build_ztunnel.sh

    DOWNLOAD_COMMAND=""
    function set_download_command () {
      # Try curl.
      if command -v curl > /dev/null; then
        if curl --version | grep Protocols  | grep https > /dev/null; then
          DOWNLOAD_COMMAND="curl -fLSs --retry 5 --retry-delay 1 --retry-connrefused"
          return
        fi
        echo curl does not support https, will try wget for downloading files.
      else
        echo curl is not installed, will try wget for downloading files.
      fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/kube/workload.go

    		}
    		if err = w.forwarder.Start(); err != nil {
    			return fmt.Errorf("failed starting port forwarder for pod %s/%s: %v",
    				pod.Namespace, pod.Name, err)
    		}
    		return nil
    	}, retry.BackoffDelay(100*time.Millisecond), retry.Timeout(10*time.Second)); err != nil {
    		return err
    	}
    
    	// Create a gRPC client to this workload.
    	w.client, err = echoClient.New(w.forwarder.Address(), w.tls)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 19:46:28 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/ingress.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    const (
    	defaultIngressIstioNameLabel = "ingressgateway"
    	defaultIngressIstioLabel     = "istio=" + defaultIngressIstioNameLabel
    	defaultIngressServiceName    = "istio-" + defaultIngressIstioNameLabel
    
    	discoveryPort = 15012
    )
    
    var (
    	getAddressTimeout = retry.Timeout(3 * time.Minute)
    	getAddressDelay   = retry.BackoffDelay(500 * time.Millisecond)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top