Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 601 for syncAt (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cmd/kube-controller-manager/app/options/namespacecontroller.go

    	if o == nil {
    		return
    	}
    
    	fs.DurationVar(&o.NamespaceSyncPeriod.Duration, "namespace-sync-period", o.NamespaceSyncPeriod.Duration, "The period for syncing namespace life-cycle updates")
    	fs.Int32Var(&o.ConcurrentNamespaceSyncs, "concurrent-namespace-syncs", o.ConcurrentNamespaceSyncs, "The number of namespace objects that are allowed to sync concurrently. Larger number = more responsive namespace termination, but more CPU (and network) load")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/resourcequotacontroller.go

    		return
    	}
    
    	fs.DurationVar(&o.ResourceQuotaSyncPeriod.Duration, "resource-quota-sync-period", o.ResourceQuotaSyncPeriod.Duration, "The period for syncing quota usage status in the system")
    	fs.Int32Var(&o.ConcurrentResourceQuotaSyncs, "concurrent-resource-quota-syncs", o.ConcurrentResourceQuotaSyncs, "The number of resource quotas that are allowed to sync concurrently. Larger number = more responsive quota management, but more CPU (and network) load")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    	//   and the bookmark event is send when the state is synced
    	//   to a `resourceVersion` at least as fresh as the one provided by the ListOptions.
    	//   If `resourceVersion` is unset, this is interpreted as "consistent read" and the
    	//   bookmark event is send when the state is synced at least to the moment
    	//   when request started being processed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. hack/_update-generated-proto-bindings-dockerized.sh

    if [ "$#" == 0 ]; then
        echo "usage: $0 <api_dir>..."
        exit 1
    fi
    
    kube::protoc::check_protoc
    
    for api; do
        # This can't use `git ls-files` because it runs in a container without the
        # .git dir synced.
        protos=()
        kube::util::read-array protos < <( \
            find "${api}" -type f -name "api.proto")
    
        if [ "${#protos[@]}" == 0 ]; then
            echo "ERROR: no 'api.proto' files under '${api}'"
            exit 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/config/types.go

    type GarbageCollectorControllerConfiguration struct {
    	// enables the generic garbage collector. MUST be synced with the
    	// corresponding flag of the kube-apiserver. WARNING: the generic garbage
    	// collector is an alpha feature.
    	EnableGarbageCollector bool
    	// concurrentGCSyncs is the number of garbage collector workers that are
    	// allowed to sync concurrently.
    	ConcurrentGCSyncs int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/options/hpacontroller.go

    	fs.DurationVar(&o.HorizontalPodAutoscalerSyncPeriod.Duration, "horizontal-pod-autoscaler-sync-period", o.HorizontalPodAutoscalerSyncPeriod.Duration, "The period for syncing...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. cmd/metrics-v3-cluster-iam.go

    	syncFailuresMD                           = NewCounterMD(syncFailures, "Number of failed IAM data syncs since server start.")
    	syncSuccessesMD                          = NewCounterMD(syncSuccesses, "Number of successful IAM data syncs since server start.")
    )
    
    // loadClusterIAMMetrics - `MetricsLoaderFn` for cluster IAM metrics.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 02 08:20:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top