Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for Petry (0.03 sec)

  1. tests/integration/security/util/reachability/context.go

    								opts.To = to
    								if len(toClusters) == 1 {
    									opts.Count = 1
    								}
    
    								// TODO(https://github.com/istio/istio/issues/37629) go back to converge
    								opts.Retry.Options = []retry.Option{retry.Converge(1)}
    								// TODO(https://github.com/istio/istio/issues/37629) go back to 5s
    								opts.Timeout = time.Second * 10
    
    								expectSuccess := c.ExpectSuccess(from, opts)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/instance.go

    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/util/istiomultierror"
    )
    
    const (
    	tcpHealthPort     = 3333
    	httpReadinessPort = 8080
    )
    
    var (
    	_ echo.Instance = &instance{}
    	_ io.Closer     = &instance{}
    
    	startDelay = retry.BackoffDelay(time.Millisecond * 100)
    )
    
    type instance struct {
    	id             resource.ID
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_delta_test.go

    	}
    
    	// Wait until nonce was updated, which represents an ACK/NACK has been received.
    	retry.UntilSuccessOrFail(t, func() error {
    		if proxy.ecdsLastNonce.Load() == n1.Load() {
    			return errors.New("last process nonce has not been updated. no ecds ack/nack is received yet")
    		}
    		return nil
    	}, retry.Timeout(time.Second), retry.Delay(time.Millisecond))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/mirror_test.go

    	options := echo.CallOptions{
    		To:    to,
    		Count: 100,
    		Port: echo.Port{
    			Name: strings.ToLower(proto.String()),
    		},
    		Retry: echo.Retry{
    			NoRetry: true,
    		},
    	}
    	switch proto {
    	case protocol.HTTP:
    		options.HTTP.Path = "/" + testID
    	case protocol.GRPC:
    		options.Message = testID
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/util.go

    	scopes.Framework.Info("Creating dummy virtual service to check for validation webhook readiness")
    	return retry.UntilSuccess(func() error {
    		err := ctx.ConfigKube(cluster).YAML("", dummyValidationVirtualService).Apply()
    		if err == nil {
    			return nil
    		}
    
    		return fmt.Errorf("validation webhook not ready yet: %v", err)
    	}, retry.Timeout(time.Minute))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pkg/test/framework/components/crd/gateway.go

    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // SupportsGatewayAPI checks if the gateway API is supported.
    func SupportsGatewayAPI(t resource.Context) bool {
    	for _, cluster := range t.Clusters() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 17:54:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/configdump.json

                "retry_host_predicate": [
                 {
                  "name": "envoy.retry_host_predicates.previous_hosts",
                  "typed_config": {
                   "@type": "type.googleapis.com/envoy.extensions.retry.host.previous_hosts.v3.PreviousHostsPredicate"
                  }
                 }
                ],
                "host_selection_retry_max_attempts": "5",
                "retriable_status_codes": [
                 503
                ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. pkg/envoy/agent.go

    				return
    			default:
    				if err != nil {
    					log.Errorf(err.Error())
    					retryCount++
    					// Max retry 5 times
    					if retryCount > 4 {
    						a.abortCh <- errAbort
    						log.Warnf("Graceful termination logic ended prematurely, error while obtaining downstream_cx_active stat (Max retry %d exceeded)", retryCount)
    						break graceful_loop
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. tests/integration/telemetry/tracing/tracing.go

    			continue
    		}
    
    		_, err := cltInstance.Call(echo.CallOptions{
    			To: server,
    			Port: echo.Port{
    				Name: "http",
    			},
    			HTTP: echo.HTTP{
    				Headers: headers,
    			},
    			Retry: echo.Retry{
    				NoRetry: true,
    			},
    		})
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. security/pkg/k8s/configutil.go

    			},
    		}
    		if _, err := client.Create(configmap); err != nil {
    			// Namespace may be deleted between now... and our previous check. Just skip this, we cannot create into deleted ns
    			// And don't retry a create if the namespace is terminating
    			if errors.IsAlreadyExists(err) || errors.HasStatusCause(err, v1.NamespaceTerminatingCause) {
    				return nil
    			}
    			if errors.IsForbidden(err) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 21:58:25 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top