Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for loadResync (0.05 sec)

  1. cmd/bucket-replication.go

    func (p *ReplicationPool) startResyncRoutine(ctx context.Context, buckets []string, objAPI ObjectLayer) {
    	r := rand.New(rand.NewSource(time.Now().UnixNano()))
    	// Run the replication resync in a loop
    	for {
    		if err := p.loadResync(ctx, buckets, objAPI); err == nil {
    			<-ctx.Done()
    			return
    		}
    		duration := time.Duration(r.Float64() * float64(time.Minute))
    		if duration < time.Second {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 06:49:55 UTC 2024
    - 116.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

              return null;
            }
          } finally {
            unlock();
            postWriteCleanup();
          }
        }
    
        // at most one of loadSync/loadAsync may be called for any given LoadingValueReference
    
        V loadSync(
            K key,
            int hash,
            LoadingValueReference<K, V> loadingValueReference,
            CacheLoader<? super K, V> loader)
            throws ExecutionException {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top