Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for NotExist (0.25 sec)

  1. pkg/controller/disruption/disruption_test.go

    	_, ctx := ktesting.NewTestContext(t)
    	dc, _ := newFakeDisruptionController(ctx)
    	pdb, _ := newMinAvailablePodDisruptionBudget(t, intstr.FromString("67%"))
    	add(t, dc.pdbStore, pdb)
    	if err := dc.sync(ctx, "notExist"); err != nil {
    		t.Errorf("Unexpected error: %v, expect nil", err)
    	}
    }
    
    func TestUpdateDisruptedPods(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	dc, ps := newFakeDisruptionController(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    		// If initErr is true, we expect framework initialization to fail.
    		initErr bool
    	}{
    		{
    			name:    "enabled Score plugin doesn't exist in registry",
    			plugins: buildScoreConfigDefaultWeights("notExist"),
    			initErr: true,
    		},
    		{
    			name:    "enabled Score plugin doesn't extend the ScorePlugin interface",
    			plugins: buildScoreConfigDefaultWeights(pluginNotImplementingScore),
    			initErr: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
Back to top