Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Code56 (0.07 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    	}
    	node5, err := fakeNodeHandler.Get(ctx, "node5", metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("Can't get current node5...")
    		return
    	}
    	if !taintutils.TaintExists(node5.Spec.Taints, NotReadyTaintTemplate) || len(node5.Spec.Taints) == 0 {
    		t.Errorf("Not found taint %v in %v, which should be present in %s", NotReadyTaintTemplate, node5.Spec.Taints, node5.Name)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			medPriorityPodInfo.Pod.UID:   "node1",
    			highPriorityPodInfo.Pod.UID:  "node2",
    			unschedulablePodInfo.Pod.UID: "node5",
    		},
    		nominatedPods: map[string][]*framework.PodInfo{
    			"node1": {medPriorityPodInfo},
    			"node2": {highPriorityPodInfo},
    			"node5": {unschedulablePodInfo},
    		},
    	}
    	if diff := cmp.Diff(q.nominator, expectedNominatedPods, nominatorCmpOpts...); 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)
Back to top