Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NewTest (0.28 sec)

  1. tests/integration/ambient/baseline_test.go

    			t.Skip("https://github.com/istio/istio/pull/50182")
    		}
    
    		// TODO test from all source workloads as well
    		src.CallOrFail(t, opt)
    	})
    }
    
    func TestPodIP(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    		for _, src := range apps.All {
    			for _, srcWl := range src.WorkloadsOrFail(t) {
    				srcWl := srcWl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. tests/integration/ambient/cnirepair/main_test.go

    	apps.Sidecar = match.ServiceName(echo.NamespacedName{Name: Sidecar, Namespace: apps.Namespace}).GetMatches(echos)
    
    	return nil
    }
    
    func TestTrafficWithCNIRepair(t *testing.T) {
    	framework.NewTest(t).
    		TopLevel().
    		Run(func(t framework.TestContext) {
    			apps := common_deploy.NewOrFail(t, t, common_deploy.Config{
    				NoExternalNamespace: true,
    				IncludeExtAuthz:     false,
    			})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/dashboard_test.go

    			"container_cpu_usage_seconds_total",
    		},
    		false,
    	},
    	*/
    }
    
    func TestDashboard(t *testing.T) {
    	c, cancel := context.WithCancel(context.Background())
    	defer cancel()
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			p := promInst
    
    			t.ConfigIstio().YAML(apps.Namespace.Name(), fmt.Sprintf(gatewayConfig, apps.Namespace.Name())).
    				ApplyOrFail(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	removedEventSinceRelist bool
    
    	// store will effectively support LIST operation from the "end of cache
    	// history" i.e. from the moment just after the newest cached watched event.
    	// It is necessary to effectively allow clients to start watching at now.
    	// NOTE: We assume that <store> is thread-safe.
    	store cache.Indexer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	fakeRuntime.SetFakeSandboxes(fakeSandboxes)
    
    	actual, err := m.GetPods(ctx, false)
    	assert.NoError(t, err)
    
    	assert.Len(t, actual, 3)
    
    	// Verify that the pods are sorted by their creation time (newest/biggest timestamp first)
    	assert.Equal(t, uint64(createdTimestamps[2]), actual[0].CreatedAt)
    	assert.Equal(t, uint64(createdTimestamps[0]), actual[1].CreatedAt)
    	assert.Equal(t, uint64(createdTimestamps[1]), actual[2].CreatedAt)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top