Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for w2 (0.01 sec)

  1. tests/integration/ambient/waypoint_test.go

    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"-n",
    				nsConfig.Name(),
    				"delete",
    				"w1",
    				"w2",
    			})
    			retry.UntilSuccessOrFail(t, func() error {
    				for _, name := range []string{"w1", "w2"} {
    					if err := checkWaypointIsReady(t, nsConfig.Name(), name); err != nil {
    						if !errors.Is(err, kubetest.ErrNoPodsFetched) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	w2, err := cacher.Watch(context.TODO(), "pods/ns", storage.ListOptions{ResourceVersion: "999", Predicate: storage.Everything})
    	if err != nil {
    		t.Fatalf("Failed to create watch: %v", err)
    	}
    	defer w2.Stop()
    
    	shouldContinue := true
    	currentRV := uint64(0)
    	for shouldContinue {
    		select {
    		case event, ok := <-w2.ResultChan():
    			if !ok {
    				shouldContinue = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top