Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 67 for Savary (0.19 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

        return new Or(this, other);
      }
    
      /**
       * Returns a {@code char} matcher functionally equivalent to this one, but which may be faster to
       * query than the original; your mileage may vary. Precomputation takes time and is likely to be
       * worthwhile only if the precomputed matcher is queried many thousands of times.
       *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

       * without contention. Because assignment of entries to these partitions is not necessarily
       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
       * accommodate as many threads as will ever concurrently modify the table. Using a significantly
       * higher value than you need can waste space and time, and a significantly lower value can lead
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

        return new Or(this, other);
      }
    
      /**
       * Returns a {@code char} matcher functionally equivalent to this one, but which may be faster to
       * query than the original; your mileage may vary. Precomputation takes time and is likely to be
       * worthwhile only if the precomputed matcher is queried many thousands of times.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        for (int i = 0; i < map.segments.length; i++) {
          assertEquals(segmentSize, map.segments[i].table.length());
        }
      }
    
      public void testSetMaximumSize() {
        // vary maximumSize wrt concurrencyLevel
    
        for (int maxSize = 1; maxSize < 100; maxSize++) {
          checkMaximumSize(1, 8, maxSize);
          checkMaximumSize(2, 8, maxSize);
          checkMaximumSize(4, 8, maxSize);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        for (int i = 0; i < map.segments.length; i++) {
          assertEquals(segmentSize, map.segments[i].table.length());
        }
      }
    
      public void testSetMaximumSize() {
        // vary maximumSize wrt concurrencyLevel
    
        for (int maxSize = 1; maxSize < 100; maxSize++) {
          checkMaximumSize(1, 8, maxSize);
          checkMaximumSize(2, 8, maxSize);
          checkMaximumSize(4, 8, maxSize);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/CacheBuilder.java

       * without contention. Because assignment of entries to these partitions is not necessarily
       * uniform, the actual concurrency observed may vary. Ideally, you should choose a value to
       * accommodate as many threads as will ever concurrently modify the table. Using a significantly
       * higher value than you need can waste space and time, and a significantly lower value can lead
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 44.8K bytes
    - Viewed (0)
  7. doc/asm.html

    In general, machine-specific operations tend to appear as themselves, while more general concepts like
    memory move and subroutine call and return are more abstract.
    The details vary with architecture, and we apologize for the imprecision; the situation is not well-defined.
    </p>
    
    <p>
    The assembler program is a way to parse a description of that
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    }
    
    // Signature will return a signature that is expected to be the same across all disks.
    func (j *xlMetaV2Object) Signature() [4]byte {
    	// Shallow copy
    	c := *j
    	// Zero fields that will vary across disks
    	c.ErasureIndex = 0
    
    	// Nil 0 size allownil, so we don't differentiate between nil and 0 len.
    	allEmpty := true
    	for _, tag := range c.PartETags {
    		if len(tag) != 0 {
    			allEmpty = false
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  9. cmd/erasure-server-pool.go

    	if scParity < 0 {
    		scParity = z.serverPools[0].defaultParityCount
    	}
    	rrSCParity := globalStorageClass.GetParityForSC(storageclass.RRS)
    
    	// Data blocks can vary per pool, but parity is same.
    	for i, setDriveCount := range z.SetDriveCounts() {
    		b.StandardSCData = append(b.StandardSCData, setDriveCount-scParity)
    		b.RRSCData = append(b.RRSCData, setDriveCount-rrSCParity)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K bytes
    - Viewed (0)
  10. cmd/server_test.go

    		"Content-Disposition",
    		"Last-Modified",
    		"Content-Language",
    		"Cache-Control",
    		"Retry-After",
    		"X-Amz-Bucket-Region",
    		"Expires",
    		"X-Amz*",
    		"X-Amz*",
    		"*",
    	}
    	expectedMap.Set("Vary", "Origin")
    
    	req, _ := http.NewRequest(http.MethodOptions, s.endPoint, nil)
    	req.Header.Set("Origin", "http://foobar.com")
    	res, err := s.client.Do(req)
    	if err != nil {
    		c.Fatal(err)
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
Back to top