Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for podKey (0.51 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    	a.hpaSelectorsMux.Lock()
    	defer a.hpaSelectorsMux.Unlock()
    
    	hpas := map[selectors.Key]struct{}{}
    	for _, p := range pods {
    		podKey := selectors.Key{Name: p.Name, Namespace: p.Namespace}
    		a.hpaSelectors.Put(podKey, p.Labels)
    
    		selectingHpas, ok := a.hpaSelectors.ReverseSelect(podKey)
    		if !ok {
    			continue
    		}
    		for _, hpa := range selectingHpas {
    			hpas[hpa] = struct{}{}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_test.go

    		},
    	}
    
    	for _, test := range tests {
    		podKeys := getPodKeys(test.pods)
    		if len(podKeys) != len(test.expectedPodKeys) {
    			t.Errorf("%s: unexpected keys for pods to delete, expected %v, got %v", test.name, test.expectedPodKeys, podKeys)
    		}
    		for i := 0; i < len(podKeys); i++ {
    			if podKeys[i] != test.expectedPodKeys[i] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    				pod := &example.Pod{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      fmt.Sprintf("foo-%d", i),
    						Namespace: "test-ns",
    					},
    				}
    				podKey := computePodKey(pod)
    				if err := store.Create(ctx, podKey, pod, out, 0); err != nil {
    					errc <- fmt.Errorf("failed to create pod %v: %v", pod, err)
    					return
    				}
    				time.Sleep(10 * time.Millisecond)
    			}
    		}
    	}()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    // is found in the map. It returns nil otherwise.
    func (u *UnschedulablePods) get(pod *v1.Pod) *framework.QueuedPodInfo {
    	podKey := u.keyFunc(pod)
    	if pInfo, exists := u.podInfoMap[podKey]; exists {
    		return pInfo
    	}
    	return nil
    }
    
    // clear removes all the entries from the unschedulable podInfoMap.
    func (u *UnschedulablePods) clear() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	podName := util.GetUniquePodName(pod)
    
    	//let the pod be terminated
    	podGet, exist := dswp.podManager.(mutablePodManager).GetPodByName(pod.Namespace, pod.Name)
    	if !exist {
    		t.Fatalf("Failed to get pod by pod name: %s and namespace: %s", pod.Name, pod.Namespace)
    	}
    	podGet.Status.Phase = v1.PodFailed
    	dswp.podManager.(mutablePodManager).RemovePod(pod)
    
    	dswp.findAndRemoveDeletedPods()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cri_stats_provider_test.go

    	assert := assert.New(t)
    	assert.NoError(err)
    	assert.Equal(4, len(stats))
    
    	podStatsMap := make(map[statsapi.PodReference]statsapi.PodStats)
    	for _, s := range stats {
    		podStatsMap[s.PodRef] = s
    	}
    
    	p0 := podStatsMap[statsapi.PodReference{Name: "sandbox0-name", UID: "sandbox0-uid", Namespace: "sandbox0-ns"}]
    	assert.Equal(sandbox0.CreatedAt, p0.StartTime.UnixNano())
    	assert.Equal(2, len(p0.Containers))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    			return
    		}
    		// If the pod is not yet ready to start, continue and wait for more updates.
    		if !canStart {
    			continue
    		}
    
    		podUID, podRef := podUIDAndRefForUpdate(update.Options)
    
    		klog.V(4).InfoS("Processing pod event", "pod", podRef, "podUID", podUID, "updateType", update.WorkType)
    		var isTerminal bool
    		err := func() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    				// actually selected.
    				r := resolveReplacement(m)
    				keep[modkey(r)] = true
    			}
    		})
    
    		if which == addBuildListZipSums {
    			for _, m := range mg.BuildList() {
    				r := resolveReplacement(m)
    				if keepModSumsForZipSums {
    					keep[modkey(r)] = true // we need the go version from the go.mod file to do anything useful with the zipfile
    				}
    				keep[r] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/cache_test.go

    		},
    	).Node(nodeName).Obj()
    }
    
    func TestEphemeralStorageResource(t *testing.T) {
    	nodeName := "node"
    	podE := makePodWithEphemeralStorage(nodeName, "500")
    	test := struct {
    		pod       *v1.Pod
    		wNodeInfo *framework.NodeInfo
    	}{
    		pod: podE,
    		wNodeInfo: newNodeInfo(
    			&framework.Resource{
    				EphemeralStorage: 500,
    			},
    			&framework.Resource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers.go

    func cachedStatsFunc(podStats []statsapi.PodStats) statsFunc {
    	uid2PodStats := map[string]statsapi.PodStats{}
    	for i := range podStats {
    		uid2PodStats[podStats[i].PodRef.UID] = podStats[i]
    	}
    	return func(pod *v1.Pod) (statsapi.PodStats, bool) {
    		stats, found := uid2PodStats[string(pod.UID)]
    		return stats, found
    	}
    }
    
    // Cmp compares p1 and p2 and returns:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
Back to top