Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for lobster (0.58 sec)

  1. pkg/kubelet/kubelet.go

    	// Check this before trusting a response from the lister.
    	serviceHasSynced cache.InformerSynced
    	// nodeLister knows how to list nodes
    	nodeLister corelisters.NodeLister
    	// nodeHasSynced indicates whether nodes have been sync'd at least once.
    	// Check this before trusting a response from the node lister.
    	nodeHasSynced cache.InformerSynced
    	// a list of node labels to register
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	}
    
    	// If the pod originates from the kube-api, when we know that the kube-apiserver is responding and the kubelet's credentials are valid.
    	// Knowing this, it is reasonable to wait until the service lister has synchronized at least once before attempting to build
    	// a service env var map.  This doesn't present the race below from happening entirely, but it does prevent the "obvious"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			logger, _ := ktesting.NewTestContext(t)
    			cs := fake.NewSimpleClientset(tt.podInfo.Pod)
    			informerFactory := informers.NewSharedInformerFactory(cs, 0)
    			podLister := informerFactory.Core().V1().Pods().Lister()
    
    			// Build a PriorityQueue.
    			q := NewPriorityQueue(newDefaultQueueSort(), informerFactory, WithPodLister(podLister))
    			ctx, cancel := context.WithCancel(context.Background())
    			defer cancel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    		container                                  *v1.Container          // the container to use
    		nilLister                                  bool                   // whether the lister should be nil
    		staticPod                                  bool                   // whether the pod should be a static pod (versus an API pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top