Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,244 for syncFn (0.1 sec)

  1. cmd/kube-controller-manager/app/options/jobcontroller.go

    func (o *JobControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentJobSyncs, "concurrent-job-syncs", o.ConcurrentJobSyncs, "The number of job objects that are allowed to sync concurrently. Larger number = more responsive jobs, but more CPU (and network) load")
    }
    
    // ApplyTo fills up JobController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 12:19:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. pkg/proxy/node.go

    // OnNodeDelete is a handler for Node deletes.
    func (n *NodePodCIDRHandler) OnNodeDelete(node *v1.Node) {
    	n.logger.Error(nil, "Current Node is being deleted", "node", klog.KObj(node))
    }
    
    // OnNodeSynced is a handler for Node syncs.
    func (n *NodePodCIDRHandler) OnNodeSynced() {}
    
    // NodeEligibleHandler handles the life cycle of the Node's eligibility, as
    // determined by the health server for directing load balancer traffic.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/etcd/etcd.go

    			continue
    		}
    		etcdEndpoints = append(etcdEndpoints, etcdEndpoint)
    	}
    	return etcdEndpoints, len(podList.Items), nil
    }
    
    // Sync synchronizes client's endpoints with the known endpoints from the etcd membership.
    func (c *Client) Sync() error {
    	// Syncs the list of endpoints
    	var cli etcdClient
    	var lastError error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/statefulsetcontroller.go

    func (o *StatefulSetControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentStatefulSetSyncs, "concurrent-statefulset-syncs", o.ConcurrentStatefulSetSyncs, "The number of statefulset objects that are allowed to sync concurrently. Larger number = more responsive statefulsets, but more CPU (and network) load")
    }
    
    // ApplyTo fills up StatefulSetController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 01 05:36:14 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. pkg/controller/volume/ephemeral/config/types.go

    package config
    
    // EphemeralVolumeControllerConfiguration contains elements describing EphemeralVolumeController.
    type EphemeralVolumeControllerConfiguration struct {
    	// ConcurrentEphemeralVolumeSyncs is the number of ephemeral volume syncing operations
    	// that will be done concurrently. Larger number = faster ephemeral volume updating,
    	// but more CPU (and network) load.
    	ConcurrentEphemeralVolumeSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 25 13:36:57 UTC 2021
    - 989 bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.go

    	"--concurrent-deployment-syncs=10",
    	"--concurrent-horizontal-pod-autoscaler-syncs=10",
    	"--concurrent-statefulset-syncs=15",
    	"--concurrent-endpoint-syncs=10",
    	"--concurrent-ephemeralvolume-syncs=10",
    	"--concurrent-service-endpoint-syncs=10",
    	"--concurrent-gc-syncs=30",
    	"--concurrent-namespace-syncs=20",
    	"--concurrent-job-syncs=10",
    	"--concurrent-cron-job-syncs=10",
    	"--concurrent-replicaset-syncs=10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/memory/controller.go

    func (c *Controller) RegisterEventHandler(kind config.GroupVersionKind, f model.EventHandler) {
    	c.monitor.AppendEventHandler(kind, f)
    }
    
    // HasSynced return whether store has synced
    // It can be controlled externally (such as by the data source),
    // otherwise it'll always consider synced.
    func (c *Controller) HasSynced() bool {
    	if c.hasSynced != nil {
    		return c.hasSynced()
    	}
    	return true
    }
    
    func (c *Controller) Run(stop <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 26 13:54:32 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/cluster.go

    	switch a {
    	case Add:
    		return "Add"
    	case Update:
    		return "Update"
    	}
    	return "Unknown"
    }
    
    // Run starts the cluster's informers and waits for caches to sync. Once caches are synced, we mark the cluster synced.
    // This should be called after each of the handlers have registered informers, and should be run in a goroutine.
    func (c *Cluster) Run(mesh mesh.Watcher, handlers []handler, action ACTION) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. pkg/controller/serviceaccount/config/types.go

    	// serviceAccountKeyFile is the filename containing a PEM-encoded private RSA key
    	// used to sign service account tokens.
    	ServiceAccountKeyFile string
    	// concurrentSATokenSyncs is the number of service account token syncing operations
    	// that will be done concurrently.
    	ConcurrentSATokenSyncs int32
    	// rootCAFile is the root certificate authority will be included in service
    	// account's token secret. This must be a valid PEM-encoded CA bundle.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 23:20:17 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. pkg/controller/resourcequota/config/types.go

    type ResourceQuotaControllerConfiguration struct {
    	// resourceQuotaSyncPeriod is the period for syncing quota usage status
    	// in the system.
    	ResourceQuotaSyncPeriod metav1.Duration
    	// concurrentResourceQuotaSyncs is the number of resource quotas that are
    	// allowed to sync concurrently. Larger number = more responsive quota
    	// management, but more CPU (and network) load.
    	ConcurrentResourceQuotaSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
Back to top