Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,483 for Keys (0.11 sec)

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

        return linkedHashKeys(DEFAULT_EXPECTED_KEYS);
      }
    
      /**
       * Uses an hash table to map keys to value collections, initialized to expect the specified number
       * of keys.
       *
       * <p>The collections returned by {@link Multimap#keySet()}, {@link Multimap#keys()}, and {@link
       * Multimap#asMap()} will iterate through the keys in the order that they were first added to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MultimapBuilder.java

        return linkedHashKeys(DEFAULT_EXPECTED_KEYS);
      }
    
      /**
       * Uses an hash table to map keys to value collections, initialized to expect the specified number
       * of keys.
       *
       * <p>The collections returned by {@link Multimap#keySet()}, {@link Multimap#keys()}, and {@link
       * Multimap#asMap()} will iterate through the keys in the order that they were first added to the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

             <artifact name="foo-1.0.jar">
                <ignored-keys>
                   <ignored-key id="ABCdef"/>
                </ignored-keys>
             </artifact>
             <artifact name="foo-1.0.pom">
                <ignored-keys>
                   <ignored-key id="123"/>
                   <ignored-key id="456" reason="bad things happen"/>
                </ignored-keys>
             </artifact>
          </component>
       </components>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LoadingCache.java

      /**
       * Returns a map of the values associated with {@code keys}, creating or retrieving those values
       * if necessary. The returned map contains entries that were already cached, combined with newly
       * loaded entries; it will never contain null keys or values.
       *
       * <p>Caches loaded by a {@link CacheLoader} will issue a single request to {@link
       * CacheLoader#loadAll} for all keys which are not already present in the cache. All entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableBiMap.java

      /**
       * Returns a {@link Collector} that accumulates elements into an {@code ImmutableBiMap} whose keys
       * and values are the result of applying the provided mapping functions to the input elements.
       * Entries appear in the result {@code ImmutableBiMap} in encounter order.
       *
       * <p>If the mapped keys or values contain duplicates (according to {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 16:03:42 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  6. platforms/software/security/src/main/java/org/gradle/security/internal/PGPUtils.java

            });
            return userIds;
        }
    
        /**
         * Returns the number of keys in the given keyring.
         * There is no public API to do this, so we use reflection to access the private field.
         * Public keys iterator is not used because it would require O(n) time to count the keys.
         */
        @SuppressWarnings("unchecked")
        public static int getSize(PGPPublicKeyRing keyring) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/python/testing.py

        test_parameters: List of dictionaries that maps parameter keys and values.
    
      Returns:
        real_parameters: All possible combinations of the parameters as list of
        dictionaries.
      """
      real_parameters = []
      for parameters in test_parameters:
        keys = parameters.keys()
        for curr in itertools.product(*parameters.values()):
          real_parameters.append(dict(zip(keys, curr)))
      return real_parameters
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/net/http/routing_tree_test.go

    	}
    	if n.emptyChild != nil {
    		fmt.Fprintf(w, "%s%q:\n", indent, "")
    		n.emptyChild.print(w, level+1)
    	}
    
    	var keys []string
    	n.children.eachPair(func(k string, _ *routingNode) bool {
    		keys = append(keys, k)
    		return true
    	})
    	slices.Sort(keys)
    
    	for _, k := range keys {
    		fmt.Fprintf(w, "%s%q:\n", indent, k)
    		n, _ := n.children.find(k)
    		n.print(w, level+1)
    	}
    
    	if n.multiChild != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pilot/pkg/model/endpointshards.go

    		keys = append(keys, k)
    	}
    	if len(keys) >= 2 {
    		sort.Slice(keys, func(i, j int) bool {
    			if keys[i].Provider == keys[j].Provider {
    				return keys[i].Cluster < keys[j].Cluster
    			}
    			return keys[i].Provider < keys[j].Provider
    		})
    	}
    	return keys
    }
    
    // CopyEndpoints takes a snapshot of all endpoints. As input, it takes a map of port name to number, to allow it to group
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            }
            assertConfigCacheDiscarded()
            when: "refreshes the keys"
            succeeds ":compileJava", "--refresh-keys"
    
            then:
            noExceptionThrown()
    
            where:
            terse << [true, false]
        }
    
        def "caches missing keys for 24h hours"() {
            createMetadataFile {
                keyServer(keyServerFixture.uri)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
Back to top