Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for set1 (0.24 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

          Set<K> set, Function<? super K, V> function) {
        return new AsMapView<>(set, function);
      }
    
      /**
       * Returns a view of the sorted set as a map, mapping keys from the set according to the specified
       * function.
       *
       * <p>Specifically, for each {@code k} in the backing set, the returned map has an entry mapping
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    		for k, v := range testCase.metadata {
    			req.Header.Set(k, v)
    		}
    		if testCase.metadataReplace {
    			req.Header.Set("X-Amz-Metadata-Directive", "REPLACE")
    		}
    		if testCase.metadataCopy {
    			req.Header.Set("X-Amz-Metadata-Directive", "COPY")
    		}
    		if testCase.metadataGarbage {
    			req.Header.Set("X-Amz-Metadata-Directive", "Unknown")
    		}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    		}
    		return
    	}
    
    	// Set encryption response headers
    	switch kind, _ := crypto.IsEncrypted(objInfo.UserDefined); kind {
    	case crypto.S3:
    		w.Header().Set(xhttp.AmzServerSideEncryption, xhttp.AmzEncryptionAES)
    	case crypto.S3KMS:
    		w.Header().Set(xhttp.AmzServerSideEncryption, xhttp.AmzEncryptionKMS)
    		w.Header().Set(xhttp.AmzServerSideEncryptionKmsID, objInfo.KMSKeyID())
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    </p>
    
    <h3 id="Method_sets">Method sets</h3>
    <p>
    A type has a (possibly empty) <i>method set</i> associated with it.
    The method set of an <a href="#Interface_types">interface type</a> is its interface.
    The method set of any other type <code>T</code> consists of all
    <a href="#Method_declarations">methods</a> declared with receiver type <code>T</code>.
    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)
  5. cmd/bucket-replication.go

    func (p *ReplicationPool) ActiveMRFWorkers() int {
    	return int(atomic.LoadInt32(&p.activeMRFWorkers))
    }
    
    // ResizeWorkers sets replication workers pool to new size.
    // checkOld can be set to an expected value.
    // If the worker count changed
    func (p *ReplicationPool) ResizeWorkers(n, checkOld int) {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  6. guava/src/com/google/common/cache/LocalCache.java

        // TODO(fry): batch by segment
        for (Object key : keys) {
          remove(key);
        }
      }
    
      @LazyInit @RetainedWith @CheckForNull Set<K> keySet;
    
      @Override
      public Set<K> keySet() {
        // does not impact recency ordering
        Set<K> ks = keySet;
        return (ks != null) ? ks : (keySet = new KeySet());
      }
    
      @LazyInit @RetainedWith @CheckForNull Collection<V> values;
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

        // TODO(fry): batch by segment
        for (Object key : keys) {
          remove(key);
        }
      }
    
      @LazyInit @RetainedWith @CheckForNull Set<K> keySet;
    
      @Override
      public Set<K> keySet() {
        // does not impact recency ordering
        Set<K> ks = keySet;
        return (ks != null) ? ks : (keySet = new KeySet());
      }
    
      @LazyInit @RetainedWith @CheckForNull Collection<V> values;
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

            inCompletionOrder(
                ImmutableList.<ListenableFuture<Long>>of(future1, future2, future3, future4, future5));
        future2.set(1L);
        future5.set(2L);
        future1.set(3L);
        future3.set(4L);
        future4.set(5L);
    
        long expectedResult = 1L;
        for (ListenableFuture<Long> future : futures) {
          assertEquals((Long) expectedResult, getDone(future));
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    ; private java.util.List repositories; private java.util.Set resolutionNodes; private java.util.Set artifacts; public void ArtifactResolutionRe(); public org.apache.maven.artifact.Artifact getOriginatingArtifa(); public ArtifactResolutionRe ListOriginatingArtif(org.apache.maven.artifact.Artifact); public java.util.Set getArtifacts(); public java.util.Set getArtifactResolutio(); public ArtifactResolutionRe setArtifactResolutio(java.util.Set); public java.util.List getMissingArtifacts(); public ArtifactResolutionRe...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 160.1K bytes
    - Viewed (0)
  10. cmd/server_test.go

    }
    
    func (s *TestSuiteCommon) TestCors(c *check) {
    	expectedMap := http.Header{}
    	expectedMap.Set("Access-Control-Allow-Credentials", "true")
    	expectedMap.Set("Access-Control-Allow-Origin", "http://foobar.com")
    	expectedMap["Access-Control-Expose-Headers"] = []string{
    		"Date",
    		"Etag",
    		"Server",
    		"Connection",
    		"Accept-Ranges",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
Back to top