Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Peaches (0.25 sec)

  1. cmd/admin-handlers.go

    }
    
    // ObjectSpeedTestHandler - reports maximum speed of a cluster by performing PUT and
    // GET operations on the server, supports auto tuning by default by automatically
    // increasing concurrency and stopping when we have reached the limits on the
    // system.
    func (a adminAPIHandlers) ObjectSpeedTestHandler(w http.ResponseWriter, r *http.Request) {
    	ctx, cancel := context.WithCancel(r.Context())
    	defer cancel()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  2. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

            if (!closed) {
              put(closeable, executor);
              return;
            }
          }
          closeQuietly(closeable, executor);
        }
    
        /**
         * Returns a latch that reaches zero when this objects' deferred closeables have been closed.
         */
        CountDownLatch whenClosedCountDown() {
          if (closed) {
            return new CountDownLatch(0);
          }
          synchronized (this) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    servebbs.com
    servebbs.net
    servebbs.org
    serveftp.net
    serveftp.org
    servegame.org
    shacknet.nu
    simple-url.com
    space-to-rent.com
    stuff-4-sale.org
    stuff-4-sale.us
    teaches-yoga.com
    thruhere.net
    traeumtgerade.de
    webhop.biz
    webhop.info
    webhop.net
    webhop.org
    worse-than.tv
    writesthisblog.com
    
    // ddnss.de : https://www.ddnss.de/
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  4. cmd/metrics-v2.go

    		metrics = append(metrics, MetricV2{
    			Description: getMinIOGORoutineCountMD(),
    			Value:       float64(runtime.NumGoroutine()),
    		})
    		return
    	})
    	return mg
    }
    
    // getHistogramMetrics fetches histogram metrics and returns it in a []Metric
    // Note: Typically used in MetricGroup.RegisterRead
    //
    // The last parameter is added for compatibility - if true it lowercases the
    // `api` label values.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    Suppose a function <code>G</code> defers a function <code>D</code> that calls
    <code>recover</code> and a panic occurs in a function on the same goroutine in which <code>G</code>
    is executing.
    When the running of deferred functions reaches <code>D</code>,
    the return value of <code>D</code>'s call to <code>recover</code> will be the value passed to the call of <code>panic</code>.
    If <code>D</code> returns normally, without starting a new
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    		}
    	}
    	return true
    }
    
    // cache of IAM info fetched in last SiteReplicationMetaInfo call
    type srIAMCache struct {
    	sync.RWMutex
    	lastUpdate time.Time
    	srIAMInfo  madmin.SRInfo // caches IAM info
    }
    
    func (c *SiteReplicationSys) getSRCachedIAMInfo() (info madmin.SRInfo, ok bool) {
    	c.iamMetaCache.RLock()
    	defer c.iamMetaCache.RUnlock()
    	if c.iamMetaCache.lastUpdate.IsZero() {
    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)
Back to top