Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for chanOf (0.14 sec)

  1. pkg/api/pod/util_test.go

    						t.Errorf("old pod changed: %v", cmp.Diff(oldPod, oldPodInfo.pod()))
    					}
    
    					switch {
    					case enabled || oldPodHasInPlaceVerticalScaling:
    						// new pod shouldn't change if feature enabled or if old pod has ResizePolicy set
    						if !reflect.DeepEqual(newPod, newPodInfo.pod()) {
    							t.Errorf("new pod changed: %v", cmp.Diff(newPod, newPodInfo.pod()))
    						}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
       * Note: All of this duplicate code sucks, but it saves a lot of memory. If only Java had mixins!
       * To maintain this code, make a change for the strong reference type. Then, cut and paste, and
       * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	// The Copy method will do the right thing if copy returns nil
    	// for some components of an AST but not others, so a good
    	// copy function will only return non-nil for AST values that
    	// need to change.
    	// Copy itself returns either a copy or nil.
    	Copy(copy func(AST) AST, skip func(AST) bool) AST
    
    	// Implement the fmt.GoStringer interface.
    	GoString() string
    	goString(indent int, field string) string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    			t.Fatal(err)
    		}
    		set, err := spc.setsLister.StatefulSets(set.Namespace).Get(set.Name)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// Change the image to trigger an update
    		set.Spec.Template.Spec.Containers[0].Image = "foo"
    
    		selector, err := metav1.LabelSelectorAsSelector(set.Spec.Selector)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

        return (Queue) DISCARDING_QUEUE;
      }
    
      /*
       * Note: All of this duplicate code sucks, but it saves a lot of memory. If only Java had mixins!
       * To maintain this code, make a change for the strong reference type. Then, cut and paste, and
       * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    				Spec:       example.PodSpec{NodeName: "machine"},
    			},
    			deleted: true,
    		},
    	}
    
    	for _, test := range tests {
    		ready := make(chan struct{})
    		updated := make(chan struct{})
    		var readyOnce, updatedOnce sync.Once
    		var called int
    		deleteValidation := func(ctx context.Context, obj runtime.Object) error {
    			readyOnce.Do(func() {
    				close(ready)
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      echo "Mounted master-pd '${pd_path}' at '${mount_point}'"
    
      # NOTE: These locations on the PD store persistent data, so to maintain
      # upgradeability, these locations should not change.  If they do, take care
      # to maintain a migration path from these locations to whatever new
      # locations.
    
      # Contains all the data stored in etcd.
      mkdir -p "${mount_point}/var/etcd"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    	if p, err := q.Pop(logger); err != nil || p.Pod != medPriorityPodInfo.Pod {
    		t.Errorf("Expected: %v after Pop, but got: %v", medPriorityPodInfo.Pod.Name, p.Pod.Name)
    	}
    	// List of nominated pods shouldn't change after popping them from the queue.
    	if diff := cmp.Diff(q.nominator, expectedNominatedPods, nominatorCmpOpts...); diff != "" {
    		t.Errorf("Unexpected diff after popping pods (-want, +got):\n%s", diff)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	// and helps us gain experience about how well the checks
    	// work, to help decide which should be turned on by default.
    	// The command-line still wins.
    	//
    	// Note that this flag change applies even when running vet as
    	// a dependency of vetting a package outside std.
    	// (Otherwise we'd have to introduce a whole separate
    	// space of "vet fmt as a dependency of a std top-level vet"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/eviction_manager_test.go

    				t.Errorf("Manager should not have killed a pod yet, but killed: %v", podKiller.pod.Name)
    			}
    
    			// step forward in time past the grace period
    			fakeClock.Step(3 * time.Minute)
    			// no change in PID stats to simulate continued pressure
    			_, err = manager.synchronize(diskInfoProvider, activePodsFunc)
    
    			if err != nil {
    				t.Fatalf("Manager expects no error but got %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top