Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for expectedIds (0.11 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    		nodeIP      string
    		podIPs      []string
    		expectedIPs []string
    	}{
    		{
    			name:        "Simple",
    			nodeIP:      "",
    			podIPs:      []string{"10.0.0.1"},
    			expectedIPs: []string{"10.0.0.1"},
    		},
    		{
    			name:        "Dual-stack",
    			nodeIP:      "",
    			podIPs:      []string{"10.0.0.1", "fd01::1234"},
    			expectedIPs: []string{"10.0.0.1", "fd01::1234"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	totalNum := 10
    	expectedPods := make([]v1.Pod, 0, totalNum)
    	for i := 0; i < totalNum; i++ {
    		priority := int32(i)
    		p := st.MakePod().Name(fmt.Sprintf("pod%d", i)).Namespace(fmt.Sprintf("ns%d", i)).UID(fmt.Sprintf("upns%d", i)).Priority(priority).Obj()
    		expectedPods = append(expectedPods, *p)
    		// priority is to make pods ordered in the PriorityQueue
    		q.Add(logger, p)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__policy__v1_openapi.json

                "default": 0,
                "description": "Number of pod disruptions that are currently allowed.",
                "format": "int32",
                "type": "integer"
              },
              "expectedPods": {
                "default": 0,
                "description": "total number of pods counted by this disruption budget",
                "format": "int32",
                "type": "integer"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top