Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for resyncPeriod (0.39 sec)

  1. cmd/kube-controller-manager/app/core.go

    		ResyncPeriod:              pkgcontroller.StaticResyncPeriodFunc(controllerContext.ComponentConfig.ResourceQuotaController.ResourceQuotaSyncPeriod.Duration),
    		InformerFactory:           controllerContext.ObjectOrMetadataInformerFactory,
    		ReplenishmentResyncPeriod: controllerContext.ResyncPeriod,
    		DiscoveryFunc:             discoveryFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils.go

    )
    
    type ResyncPeriodFunc func() time.Duration
    
    // Returns 0 for resyncPeriod in case resyncing is not needed.
    func NoResyncPeriodFunc() time.Duration {
    	return 0
    }
    
    // StaticResyncPeriodFunc returns the resync period specified
    func StaticResyncPeriodFunc(resyncPeriod time.Duration) ResyncPeriodFunc {
    	return func() time.Duration {
    		return resyncPeriod
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. pkg/controller/resourcequota/resource_quota_controller_test.go

    	close(alwaysStarted)
    	resourceQuotaControllerOptions := &ControllerOptions{
    		QuotaClient:               kubeClient.CoreV1(),
    		ResourceQuotaInformer:     informerFactory.Core().V1().ResourceQuotas(),
    		ResyncPeriod:              controller.NoResyncPeriodFunc,
    		ReplenishmentResyncPeriod: controller.NoResyncPeriodFunc,
    		IgnoredResourcesFunc:      quotaConfiguration.IgnoredResources,
    		DiscoveryFunc:             discoveryFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
Back to top