Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPodCreationInfoForIndependentIndexes (0.31 sec)

  1. pkg/controller/job/job_controller.go

    	return active, metrics.JobSyncActionTracking, nil
    }
    
    // getPodCreationInfoForIndependentIndexes returns a sub-list of all indexes
    // to create that contains those which can be already created. In case no indexes
    // are ready to create pods, it returns the lowest remaining time to create pods
    // out of all indexes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			fakeClock := clocktesting.NewFakeClock(now)
    			manager, _ := newControllerFromClientWithClock(ctx, t, clientset, controller.NoResyncPeriodFunc, fakeClock)
    			gotIndexesToAdd, gotRemainingTime := manager.getPodCreationInfoForIndependentIndexes(logger, tc.indexesToAdd, tc.podsWithDelayedDeletionPerIndex)
    			if diff := cmp.Diff(tc.wantIndexesToAdd, gotIndexesToAdd); diff != "" {
    				t.Fatalf("Unexpected indexes to add: %s", diff)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top