Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 585 for Keys (0.07 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/TestSortedMapGenerator.java

      @Override
      SortedMap<K, V> create(Object... elements);
    
      /**
       * Returns an entry with a key less than the keys of the {@link #samples()} and less than the key
       * of {@link #belowSamplesGreater()}.
       */
      Entry<K, V> belowSamplesLesser();
    
      /**
       * Returns an entry with a key less than the keys of the {@link #samples()} but greater than the
       * key of {@link #belowSamplesLesser()}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. docs/docker/README.md

    ## MinIO Docker Tips
    
    ### MinIO Custom Access and Secret Keys
    
    To override MinIO's auto-generated keys, you may pass secret and access keys explicitly as environment variables. MinIO server also allows regular strings as access and secret keys.
    
    #### GNU/Linux and macOS (custom access and secret keys)
    
    ```sh
    docker run \
      -p 9000:9000 \
      -p 9001:9001 \
      --name minio1 \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheLoader.java

      /**
       * Computes or retrieves the values corresponding to {@code keys}. This method is called by {@link
       * LoadingCache#getAll}.
       *
       * <p>If the returned map doesn't contain all requested {@code keys} then the entries it does
       * contain will be cached, but {@code getAll} will throw an exception. If the returned map
       * contains extra keys not present in {@code keys} then all returned entries will be cached, but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/CompactLinkedHashMapTest.java

        List<? extends Entry<?, ?>> entries = Lists.newArrayList(map.entrySet());
        List<Object> keys = Lists.newArrayList(map.keySet());
        List<Object> values = Lists.newArrayList(map.values());
        assertEquals(2 * entries.size(), alternatingKeysAndValues.length);
        assertEquals(2 * keys.size(), alternatingKeysAndValues.length);
        assertEquals(2 * values.size(), alternatingKeysAndValues.length);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 21:08:15 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/MapReplaceAllTester.java

        getMap()
            .replaceAll(
                (K k, V v) -> {
                  int index = keys().asList().indexOf(k);
                  return values().asList().get(index + 1);
                });
        List<Entry<K, V>> expectedEntries = new ArrayList<>();
        for (Entry<K, V> entry : getSampleEntries()) {
          int index = keys().asList().indexOf(entry.getKey());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  6. pkg/credentialprovider/plugins.go

    func NewDockerKeyring() DockerKeyring {
    	keyring := &providersDockerKeyring{
    		Providers: make([]DockerConfigProvider, 0),
    	}
    
    	keys := reflect.ValueOf(providers).MapKeys()
    	stringKeys := make([]string, len(keys))
    	for ix := range keys {
    		stringKeys[ix] = keys[ix].String()
    	}
    	sort.Strings(stringKeys)
    
    	for _, key := range stringKeys {
    		provider := providers[key]
    		if provider.Enabled() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 22:01:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/SampleElements.java

          SampleElements<Entry<K, V>> mapEntries(SampleElements<K> keys, SampleElements<V> values) {
        return new SampleElements<>(
            Helpers.mapEntry(keys.e0(), values.e0()),
            Helpers.mapEntry(keys.e1(), values.e1()),
            Helpers.mapEntry(keys.e2(), values.e2()),
            Helpers.mapEntry(keys.e3(), values.e3()),
            Helpers.mapEntry(keys.e4(), values.e4()));
      }
    
      public E e0() {
        return e0;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cache_test.go

    }
    
    func benchmarkCache(cache cache, b *testing.B, numKeys int) {
    	keys := []string{}
    	for i := 0; i < numKeys; i++ {
    		key := uuid.New().String()
    		keys = append(keys, key)
    	}
    
    	b.ResetTimer()
    
    	b.SetParallelism(500)
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			key := keys[rand.Intn(numKeys)]
    			_, ok := cache.get(key)
    			if ok {
    				cache.remove(key)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/envoyfilter.go

    		}
    	}
    	return true
    }
    
    // Returns the keys of all the wrapped envoyfilters.
    func (efw *EnvoyFilterWrapper) Keys() []string {
    	if efw == nil {
    		return nil
    	}
    	keys := sets.String{}
    	for _, patches := range efw.Patches {
    		for _, patch := range patches {
    			keys.Insert(patch.Key())
    		}
    	}
    	return sets.SortedList(keys)
    }
    
    // Returns the keys of all the wrapped envoyfilters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. tests/fuzz/pilot_security_fuzzer.go

    	if err != nil {
    		return 0
    	}
    	maxKeys := number % 100
    	keys := make([]string, 0, maxKeys)
    	for i := 0; i < maxKeys; i++ {
    		key, err := f.GetString()
    		if err != nil {
    			return 0
    		}
    		keys = append(keys, key)
    	}
    	value, err := f.GetString()
    	if err != nil {
    		return 0
    	}
    	_ = matcher.MetadataListMatcher(filter, keys, matcher.StringMatcher(value), false)
    	return 1
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top