Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 729 for keys2 (0.28 sec)

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

      }
    
      /**
       * Associates the value {@code null} with the specified keys, assuming both keys are valid. If
       * either key is null or isn't among the keys provided during construction, this method has no
       * effect.
       *
       * <p>This method is equivalent to {@code put(rowKey, columnKey, null)} when both provided keys
       * are valid.
       *
       * @param rowKey row key of mapping to be erased
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. src/expvar/expvar_test.go

    	for i := range procKeys {
    		keys := make([]string, 4)
    		for j := range keys {
    			keys[j] = fmt.Sprint(i, j)
    		}
    		procKeys[i] = keys
    	}
    
    	b.ResetTimer()
    
    	var n int32
    	b.RunParallel(func(pb *testing.PB) {
    		i := int(atomic.AddInt32(&n, 1)-1) % len(procKeys)
    		keys := procKeys[i]
    
    		for pb.Next() {
    			m := new(Map).Init()
    			for _, k := range keys {
    				m.Add(k, 1)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. pilot/pkg/credentials/kube/secrets.go

    }
    
    func truncatedKeysMessage(data map[string][]byte) string {
    	keys := []string{}
    	for k := range data {
    		keys = append(keys, k)
    	}
    	sort.Strings(keys)
    	if len(keys) < 3 {
    		return strings.Join(keys, ", ")
    	}
    	return fmt.Sprintf("%s, and %d more...", strings.Join(keys[:3], ", "), len(keys)-3)
    }
    
    // extractRoot extracts the root certificate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ArrayTable.java

      }
    
      /**
       * Associates the value {@code null} with the specified keys, assuming both keys are valid. If
       * either key is null or isn't among the keys provided during construction, this method has no
       * effect.
       *
       * <p>This method is equivalent to {@code put(rowKey, columnKey, null)} when both provided keys
       * are valid.
       *
       * @param rowKey row key of mapping to be erased
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

       * by init(), which the constructor calls.
       */
    
      /** The keys of the entries in the map. */
      transient @Nullable Object[] keys;
    
      /** The values of the entries in the map. */
      transient int[] values;
    
      transient int size;
    
      transient int modCount;
    
      /**
       * The hashtable. Its values are indexes to the keys, values, and entries arrays.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

                expected_input_keys is not None
                and set(repr_sample.keys()) != expected_input_keys
            ):
              raise KeyError(
                  'Invalid input keys for representative sample. The function'
                  f' expects input keys of: {set(expected_input_keys)}. Got:'
                  f' {set(repr_sample.keys())}. Please provide correct input keys'
                  ' for representative samples.'
              )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

          each identifying a `SignatureDef`.
    
      Raises:
        ValueError: Iff `representative_dataset` does not satisfy the conditions
          above.
      """
      if isinstance(representative_dataset, Mapping):
        if set(signature_keys) != set(representative_dataset.keys()):
          raise ValueError(
              'The signature keys and the keys of representative dataset map '
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

              .addEqualityGroup(cache.asMap().keySet(), keys)
              .addEqualityGroup(ImmutableSet.of())
              .testEquals();
          assertEquals(WARMUP_SIZE, keys.size());
          for (int i = WARMUP_MIN; i < WARMUP_MAX; i++) {
            Object key = warmed.get(i - WARMUP_MIN).getKey();
            assertTrue(keys.contains(key));
            assertTrue(keys.remove(key));
            assertFalse(keys.remove(key));
            assertFalse(keys.contains(key));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. docs/security/README.md

    - Seal/Unmount one/some master keys. That will lock all SSE-S3 encrypted objects protected by these master keys. All these objects can not be decrypted as long as the key(s) are sealed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/CrossBuildSignatureVerificationService.java

                int len = decoder.readSmallInt();
                List<PGPPublicKey> keys = null;
                if (len > 0) {
                    keys = Lists.newArrayListWithCapacity(len);
                    for (int i = 0; i < len; i++) {
                        keys.add(publicKeySerializer.read(decoder));
                    }
                }
                return keys;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top