Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewFakeRecorder (0.19 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    				}
    			}
    
    			jc := &fakeJobControl{Job: job, CreateErr: tc.jobCreateError, Err: tc.jobGetErr}
    			cjc := &fakeCJControl{CronJob: realCJ}
    			recorder := record.NewFakeRecorder(10)
    
    			jm := ControllerV2{
    				jobControl:     jc,
    				cronJobControl: cjc,
    				recorder:       recorder,
    				now: func() time.Time {
    					return tc.now
    				},
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  2. pkg/controller/disruption/disruption_test.go

    	dc.pdbListerSynced = alwaysReady
    	dc.rcListerSynced = alwaysReady
    	dc.rsListerSynced = alwaysReady
    	dc.dListerSynced = alwaysReady
    	dc.ssListerSynced = alwaysReady
    	dc.recorder = record.NewFakeRecorder(100)
    	informerFactory.Start(ctx.Done())
    	informerFactory.WaitForCacheSync(ctx.Done())
    
    	return &disruptionController{
    		dc,
    		informerFactory.Core().V1().Pods().Informer().GetStore(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    		dsw := cache.NewDesiredStateOfWorld(volumePluginMgr)
    		asw := cache.NewActualStateOfWorld(volumePluginMgr)
    		fakeKubeClient := controllervolumetesting.CreateTestClient()
    		fakeRecorder := record.NewFakeRecorder(100)
    		fakeHandler := volumetesting.NewBlockVolumePathHandler()
    		ad := operationexecutor.NewOperationExecutor(operationexecutor.NewOperationGenerator(
    			fakeKubeClient,
    			volumePluginMgr,
    			fakeRecorder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
Back to top