Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,460 for syncs (0.06 sec)

  1. cluster/gce/gci/configure-helper.sh

         # Keep in sync with add-replica-to-etcd/remove-replica-from-etcd in util.sh.
         ETCD_APISERVER_CLIENT_KEY_PATH="${auth_dir}/etcd-apiserver-client.key"
         echo "${ETCD_APISERVER_CLIENT_KEY}" | base64 --decode > "${ETCD_APISERVER_CLIENT_KEY_PATH}"
    
         # Keep in sync with add-replica-to-etcd/remove-replica-from-etcd in util.sh.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	defer proxier.mu.Unlock()
    
    	// don't sync rules till we've received services and endpoints
    	if !proxier.isInitialized() {
    		proxier.logger.V(2).Info("Not syncing nftables until Services and Endpoints have been received from master")
    		return
    	}
    
    	//
    	// Below this point we will not return until we try to write the nftables rules.
    	//
    
    	// Keep track of how long syncs take.
    	start := time.Now()
    	defer func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    					Help:      "Time (in milliseconds) since last successful IAM data sync",
    					Type:      gaugeMetric,
    				},
    				Value: float64(sinceLastSyncMillis),
    			},
    			{
    				Description: MetricDescription{
    					Namespace: nodeMetricNamespace,
    					Subsystem: iamSubsystem,
    					Name:      "sync_successes",
    					Help:      "Number of successful IAM data syncs since server uptime",
    					Type:      counterMetric,
    				},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs.go

    	TagCmd         []tagCmd // commands to list tags
    	TagLookupCmd   []tagCmd // commands to lookup tags before running tagSyncCmd
    	TagSyncCmd     []string // commands to sync to specific tag
    	TagSyncDefault []string // commands to sync to default tag
    
    	Scheme  []string
    	PingCmd string
    
    	RemoteRepo  func(v *Cmd, rootDir string) (remoteRepo string, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    		// been flushed. In both of those cases, the code will force a full sync.
    		// In all other cases, it ought to be safe to assume that the rules
    		// already exist, so we'll skip this step when doing a partial sync, to
    		// save us from having to invoke /sbin/iptables 20 times on each sync
    		// (which will be very slow on hosts with lots of iptables rules).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    		// extra syncs may no longer be necessary. Reevaluate whether Reconcile and Sync can be
    		// merged (after resolving the next two TODOs).
    
    		// Reconcile Pod "Ready" condition if necessary. Trigger sync pod for reconciliation.
    		// TODO: this should be unnecessary today - determine what is the cause for this to
    		// be different than Sync, or if there is a better place for it. For instance, we have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers_test.go

    )
    
    // fakePodWorkers runs sync pod function in serial, so we can have
    // deterministic behaviour in testing.
    type fakePodWorkers struct {
    	lock      sync.Mutex
    	syncPodFn syncPodFnType
    	cache     kubecontainer.Cache
    	t         TestingInterface
    
    	triggeredDeletion []types.UID
    	triggeredTerminal []types.UID
    
    	statusLock            sync.Mutex
    	running               map[types.UID]bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  8. pkg/controller/nodeipam/ipam/sync/sync.go

    // alias.
    func (op *updateOp) updateNodeFromAlias(ctx context.Context, sync *NodeSync, node *v1.Node, aliasRange *net.IPNet) error {
    	if sync.mode != SyncFromCloud {
    		sync.kubeAPI.EmitNodeWarningEvent(node.Name, InvalidModeEvent,
    			"Cannot sync from cloud in mode %q", sync.mode)
    		return fmt.Errorf("cannot sync from cloud in mode %q", sync.mode)
    	}
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/Sync.java

     * // filter will not be deleted.
     * task sync(type: Sync) {
     *     from 'source'
     *     into 'dest'
     *     preserve {
     *         include 'extraDir/**'
     *         include 'dir1/**'
     *         exclude 'dir1/extra.txt'
     *     }
     * }
     * </pre>
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class Sync extends AbstractCopyTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. pkg/controller/deployment/sync.go

    	if err != nil {
    		return err
    	}
    
    	allRSs := append(oldRSs, newRS)
    	return dc.syncDeploymentStatus(ctx, allRSs, newRS, d)
    }
    
    // sync is responsible for reconciling deployments on scaling events or when they
    // are paused.
    func (dc *DeploymentController) sync(ctx context.Context, d *apps.Deployment, rsList []*apps.ReplicaSet) error {
    	newRS, oldRSs, err := dc.getAllReplicaSetsAndSyncRevision(ctx, d, rsList, false)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
Back to top