Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,460 for syncs (0.09 sec)

  1. pkg/proxy/healthcheck/proxier_health.go

    			// there's an unprocessed update queued for this proxier, but it's not late yet.
    			continue
    		}
    		return false, proxierLastUpdated
    	}
    	return true, lastUpdated
    }
    
    // SyncNode syncs the node and determines if it is eligible or not. Eligible is
    // defined as being: not tainted by ToBeDeletedTaint and not deleted.
    func (hs *ProxierHealthServer) SyncNode(node *v1.Node) {
    	hs.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. pkg/kubelet/status/status_manager.go

    	kubeClient clientset.Interface
    	podManager PodManager
    	// Map from pod UID to sync status of the corresponding pod.
    	podStatuses      map[types.UID]versionedPodStatus
    	podStatusesLock  sync.RWMutex
    	podStatusChannel chan struct{}
    	// Map from (mirror) pod UID to latest status version successfully sent to the API server.
    	// apiStatusVersions must only be accessed from the sync thread.
    	apiStatusVersions map[kubetypes.MirrorPodUID]uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set.go

    func (ssc *StatefulSetController) worker(ctx context.Context) {
    	for ssc.processNextWorkItem(ctx) {
    	}
    }
    
    // sync syncs the given statefulset.
    func (ssc *StatefulSetController) sync(ctx context.Context, key string) error {
    	startTime := time.Now()
    	logger := klog.FromContext(ctx)
    	defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. tensorflow/c/env.h

    // the file, it is indicated by status. Memory is freed in any case.
    TF_CAPI_EXPORT extern void TF_CloseWritableFile(TF_WritableFileHandle* handle,
                                                    TF_Status* status);
    
    // Syncs content of the handle to the filesystem. Blocks waiting for the
    // filesystem to indicate that the content has been persisted.
    TF_CAPI_EXPORT extern void TF_SyncWritableFile(TF_WritableFileHandle* handle,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  5. pkg/proxy/metrics/metrics.go

    	// IPTablesRulesLastSync is the number of iptables rules that the iptables proxy
    	// updated in the last sync.
    	IPTablesRulesLastSync = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_iptables_last",
    			Help:           "Number of iptables rules written by kube-proxy in last sync",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"table"},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. docs/metrics/v3.md

    | `minio_cluster_iam_since_last_sync_millis`                      | `counter` | Time (in milliseconds) since last successful IAM data sync                                                               |        |
    | `minio_cluster_iam_sync_failures`                               | `counter` | Number of failed IAM data syncs since server start                                                                       |        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/list.md

    | `minio_node_iam_last_sync_duration_millis` | Last successful IAM data sync duration in milliseconds.     |
    | `minio_node_iam_since_last_sync_millis`    | Time (in milliseconds) since last successful IAM data sync. |
    | `minio_node_iam_sync_failures`             | Number of failed IAM data syncs since server start.         |
    | `minio_node_iam_sync_successes`            | Number of successful IAM data syncs since server start.     |
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/cidrallocator.go

    			return true
    		}
    	}
    	c.queue.Forget(key)
    	return true
    }
    
    // syncTree syncs the ipTrees from the informer cache
    // It deletes or creates allocator and sets the corresponding state
    func (c *MetaAllocator) syncTree() error {
    	now := time.Now()
    	defer func() {
    		klog.V(2).Infof("Finished sync for CIDRs took %v", time.Since(now))
    	}()
    
    	serviceCIDRs, err := c.serviceCIDRLister.List(labels.Everything())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. pkg/proxy/config/config.go

    func (*NoopNodeHandler) OnNodeUpdate(oldNode, node *v1.Node) {}
    
    // OnNodeDelete is a noop handler for Node deletes.
    func (*NoopNodeHandler) OnNodeDelete(node *v1.Node) {}
    
    // OnNodeSynced is a noop handler for Node syncs.
    func (*NoopNodeHandler) OnNodeSynced() {}
    
    var _ NodeHandler = &NoopNodeHandler{}
    
    // NodeConfig tracks a set of node configurations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. docs/bucket/replication/DESIGN.md

    ...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
Back to top