Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Blah (0.18 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    				nodeWithTaints("nodeA", []v1.Taint{{
    					Key:    "foo",
    					Value:  "bar",
    					Effect: v1.TaintEffectPreferNoSchedule,
    				}}),
    				nodeWithTaints("nodeB", []v1.Taint{{
    					Key:    "foo",
    					Value:  "blah",
    					Effect: v1.TaintEffectPreferNoSchedule,
    				}}),
    			},
    			expectedList: []framework.NodeScore{
    				{Name: "nodeA", Score: framework.MaxNodeScore},
    				{Name: "nodeB", Score: 0},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    		} else {
    			assert.NoError(t, err, "[case %d] error", i)
    		}
    		// Access the log of a container that's not in the pod
    		_, err = kubelet.validateContainerLogStatus("podName", podStatus, "blah", false)
    		assert.Error(t, err, fmt.Sprintf("[case %d] invalid container name should cause an error", i))
    	}
    }
    
    func TestCreateMirrorPod(t *testing.T) {
    	tests := []struct {
    		name       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top