Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 110 for Petry (0.03 sec)

  1. tests/integration/telemetry/api/istioctl_metrics_test.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // TestIstioctlMetrics contains a basic validation of the experimental
    // metrics command. It validates that values are being returned when there is
    // traffic and that the expected default output format is matched.
    func TestIstioctlMetrics(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. tests/integration/pilot/piggyback_test.go

    import (
    	"fmt"
    	"strings"
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/istioctl"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestPiggyback(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		RequireIstioVersion("1.10.0").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller_test.go

    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/kube/mcs"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var serviceExportTimeout = retry.Timeout(time.Second * 2)
    
    func TestServiceExportController(t *testing.T) {
    	client := kube.NewFakeClient()
    
    	// Configure the environment with cluster-local hosts.
    	m := meshconfig.MeshConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 16:02:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. pkg/queue/instance_test.go

    	handles := atomic.NewInt32(0)
    	task := func() error {
    		handles.Inc()
    		return nil
    	}
    	q := NewQueue(0)
    	q.Push(task)
    	stop := make(chan struct{})
    	go q.Run(stop)
    	retry.UntilOrFail(t, q.HasSynced, retry.Delay(time.Microsecond))
    	// Must always be 1 since we are synced
    	assert.Equal(t, handles.Load(), 1)
    	close(stop)
    	assert.NoError(t, WaitForClose(q, time.Second))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 21 16:30:36 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	t.Helper()
    	assert.EventuallyEqual(t, func() int {
    		return len(m.component.All())
    	}, expectedControllerCount, retry.Message(timeoutName), retry.Delay(time.Millisecond*10), retry.Timeout(time.Second*5))
    }
    
    func initController(client kube.CLIClient, ns string, stop <-chan struct{}) *multicluster.Controller {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. releasenotes/notes/50596.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50596
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 217 bytes
    - Viewed (0)
  8. pkg/test/framework/components/ambient/waypoint.go

    			return fmt.Errorf("cannot fetch pod: %v", err)
    		} else if len(pods) != 0 {
    			return fmt.Errorf("waypoint pod is not deleted")
    		}
    		return nil
    	}, retry.Timeout(time.Minute), retry.BackoffDelay(time.Millisecond*100))
    	if waypointError != nil {
    		t.Fatal(waypointError)
    	}
    }
    
    func RemoveWaypointFromService(t framework.TestContext, ns namespace.Instance, service, waypoint string) {
    	if service != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. releasenotes/notes/gw-hostname-resolution.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/44155
    releaseNotes:
      - |
        **Fixed** an issue where istiod does not retry resolving east-west gateway hostnames on failure.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 16:17:56 UTC 2023
    - 370 bytes
    - Viewed (0)
  10. samples/ambient-argo/meta-application.yaml

        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
        directory:
          include: application.yaml
      project: default
      syncPolicy:
        automated:
          prune: true
          selfHeal: true
        retry:
          limit: 2
          backoff:
            duration: 5s
            maxDuration: 3m0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 630 bytes
    - Viewed (0)
Back to top