Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for backoffWait (0.05 sec)

  1. internal/dsync/drwmutex.go

    		v, err := strconv.Atoi(lri)
    		if err != nil {
    			panic(err)
    		}
    		lockRetryMinInterval = time.Duration(v) * time.Millisecond
    	}
    
    	lockRetryBackOff = backoffWait(
    		lockRetryMinInterval,
    		100*time.Millisecond,
    		5*time.Second,
    	)
    }
    
    func log(format string, data ...any) {
    	if dsyncLog {
    		console.Printf(format, data...)
    	}
    }
    
    const (
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 20.3K bytes
    - Viewed (0)
Back to top