Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. cmd/site-replication.go

    				took := time.Since(refreshStart).Seconds()
    				if took > maxRefreshDurationSecondsForLog {
    					// Log if we took a lot of time.
    					logger.Info("Site replication healing refresh took %.2fs", took)
    				}
    
    				// wait for 200 millisecond, if we are experience lot of I/O
    				waitForLowIO(runtime.GOMAXPROCS(0), 200*time.Millisecond, currentHTTPIO)
    			}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  2. cmd/storage-datatypes_gen.go

    		return
    	}
    	z.SuccessorModTime, err = dc.ReadTime()
    	if err != nil {
    		err = msgp.WrapError(err, "SuccessorModTime")
    		return
    	}
    	z.Fresh, err = dc.ReadBool()
    	if err != nil {
    		err = msgp.WrapError(err, "Fresh")
    		return
    	}
    	z.Idx, err = dc.ReadInt()
    	if err != nil {
    		err = msgp.WrapError(err, "Idx")
    		return
    	}
    	if dc.IsNil() {
    		err = dc.ReadNil()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
Back to top