Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 114 for Everything (0.34 sec)

  1. pilot/pkg/xds/ads.go

    // pattern.
    //
    // The delta protocol changes the request, adding unsubscribe/subscribe instead of sending full
    // list of resources. On the response it adds 'removed resources' and sends changes for everything.
    func (s *DiscoveryServer) DeltaAggregatedResources(stream discovery.AggregatedDiscoveryService_DeltaAggregatedResourcesServer) error {
    	return s.StreamDeltas(stream)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller.go

    // queues any Services that are past the threshold.
    func (c *Controller) checkNodeTopologyDistribution(logger klog.Logger) {
    	if c.topologyCache == nil {
    		return
    	}
    	nodes, err := c.nodeLister.List(labels.Everything())
    	if err != nil {
    		logger.Error(err, "Error listing Nodes")
    		return
    	}
    	c.topologyCache.SetNodes(logger, nodes)
    	serviceKeys := c.topologyCache.GetOverloadedServices()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. pkg/kube/krt/collection.go

    	if runExistingState {
    		h.recomputeMu.Lock()
    		defer h.recomputeMu.Unlock()
    	}
    	initialized := !h.eventHandlers.Insert(f)
    	if initialized && runExistingState {
    		// Already started. Pause everything, and run through the handler.
    		h.mu.Lock()
    		events := make([]Event[O], 0, len(h.collectionState.outputs))
    		for _, o := range h.collectionState.outputs {
    			o := o
    			events = append(events, Event[O]{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    		t.Fatalf("unexpected error waiting for the cache to be ready")
    	}
    
    	w, err := cacher.Watch(context.Background(), "pods/ns", storage.ListOptions{ResourceVersion: "0", Predicate: storage.Everything})
    	if err != nil {
    		t.Fatalf("Failed to create watch: %v", err)
    	}
    
    	watchClosed := make(chan struct{})
    	go func() {
    		defer close(watchClosed)
    		for event := range w.ResultChan() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CompactHashSet.java

      // description talks about `keys`, `values`, and `entries`; here the `keys` and `values` arrays
      // are replaced by a single `elements` array but everything else works similarly.
    
      /**
       * The hashtable object. This can be either:
       *
       * <ul>
       *   <li>a byte[], short[], or int[], with size a power of two, created by
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    		// New pod has been synced. Re-mount all volumes that need it
    		// (e.g. DownwardAPI)
    		dswp.actualStateOfWorld.MarkRemountRequired(uniquePodName)
    		// Remove any stored errors for the pod, everything went well in this processPodVolumes
    		dswp.desiredStateOfWorld.PopPodErrors(uniquePodName)
    	} else if dswp.podHasBeenSeenOnce(uniquePodName) {
    		// For the Pod which has been processed at least once, even though some volumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

            }
    
            @Override
            public DeserializeMap newDeserializeSession() {
                return (classLoaderDetails, className) -> {
                    // Assume everything is loaded into the current classloader
                    return Class.forName(className);
                };
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    				}
    				originalRevision = out.(metav1.Object).GetResourceVersion()
    			}
    
    			// prepare result and pred
    			pred := storage.SelectionPredicate{
    				Label: tc.selector,
    				Field: fields.Everything(),
    				GetAttrs: func(obj runtime.Object) (labels.Set, fields.Set, error) {
    					pod, ok := obj.(*examplev1.Pod)
    					if !ok {
    						return nil, nil, fmt.Errorf("not a pod")
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/gateway.go

    					//    if using HTTPS ensure that port name is distinct so that we can setup separate RDS
    					//    for each server (as each server ends up as a separate http connection manager due to filter chain match)
    					// 3. No for everything else.
    					if current, exists := plainTextServers[resolvedPort]; exists {
    						if !canMergeProtocols(serverProtocol, protocol.Parse(current.Protocol)) && current.Bind == serverPort.Bind {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/preemption/preemption.go

    	return potentialNodes, nodeStatuses
    }
    
    func getPodDisruptionBudgets(pdbLister policylisters.PodDisruptionBudgetLister) ([]*policy.PodDisruptionBudget, error) {
    	if pdbLister != nil {
    		return pdbLister.List(labels.Everything())
    	}
    	return nil, nil
    }
    
    // pickOneNodeForPreemption chooses one node among the given nodes.
    // It assumes pods in each map entry are ordered by decreasing priority.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
Back to top