Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for resyncTime (0.2 sec)

  1. pkg/controller/nodeipam/ipam/sync/sync.go

    		if done != nil {
    			close(done)
    		}
    	}()
    
    	timeout := sync.c.ResyncTimeout()
    	delayTimer := time.NewTimer(timeout)
    	logger.V(4).Info("Try to resync node later", "node", klog.KRef("", sync.nodeName), "resyncTime", timeout)
    
    	for {
    		select {
    		case op, more := <-sync.opChan:
    			if !more {
    				logger.V(2).Info("Stopping sync loop")
    				return
    			}
    			sync.c.ReportResult(op.run(logger, sync))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	resyncTimer := time.NewTimer(resyncTimeInterval)
    	defer resyncTimer.Stop()
    
    	// For each bucket name, store the last timestamp of the
    	// successful save of replication status in the backend disks.
    	lastResyncStatusSave := make(map[string]time.Time)
    
    	for {
    		select {
    		case <-resyncTimer.C:
    			s.RLock()
    			for bucket, brs := range s.statusMap {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top