Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for HashTable (0.16 sec)

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

     * elements, including {@code null}, are permitted.
     *
     * <p>{@code contains(x)}, {@code add(x)} and {@code remove(x)}, are all (expected and amortized)
     * constant time operations. Expected in the hashtable sense (depends on the hash function doing a
     * good job of distributing the elements to the buckets to a distribution not far from uniform), and
     * amortized since some operations can trigger a hash table resize.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 21:38:59 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h

    // pass is a part of the ConvertTpuModelToCpu pass to support BF16 optimized TPU
    // model quantization.
    std::unique_ptr<OperationPass<ModuleOp>> CreateCastBf16OpsToF32Pass();
    
    // Creates a pass that lifts HashTable ops as function arguments. In the graph
    // execution mode, resource ops with the same `shared_name` attribute point to
    // the same underlying resource. This is not true in the eager execution mode.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/CompactLinkedHashMap.java

     * remove) are supported. Null keys and values are supported.
     *
     * <p>{@code containsKey(k)}, {@code put(k, v)} and {@code remove(k)} are all (expected and
     * amortized) constant time operations. Expected in the hashtable sense (depends on the hash
     * function doing a good job of distributing the elements to the buckets to a distribution not far
     * from uniform), and amortized since some operations can trigger a hash table resize.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/LinkedHashMultimapTest.java

              (LinkedHashMultimap.ValueSet) multimap.backingMap().get("a");
          assertEquals(z, valueSet.size());
          assertFalse(
              Hashing.needsResizing(
                  valueSet.size(),
                  valueSet.hashTable.length,
                  LinkedHashMultimap.VALUE_SET_LOAD_FACTOR));
        }
      }
    
      private Multimap<String, Integer> initializeMultimap5() {
        Multimap<String, Integer> multimap = LinkedHashMultimap.create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/canonicalize.td

      (TF_VariableV2Op:$dest $shape, $container, $shard_name),
      [], [(CopyAttrs $src, $dest)]>;
    
    
    //===----------------------------------------------------------------------===//
    // Canonicalize tf.HashTable and its user ops to V2 versions.
    //===----------------------------------------------------------------------===//
    def HashTableAndInitializeTableToV2 : Pat<
      (TF_InitializeTableFromTextFileOp:$src (TF_HashTableOp $container,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:42:28 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/HashBiMap.java

        return findEntry(value, valueHash, hashTableVToK, nextInBucketVToK, values);
      }
    
      int findEntry(
          @CheckForNull Object o,
          int oHash,
          int[] hashTable,
          int[] nextInBucket,
          @Nullable Object[] array) {
        for (int entry = hashTable[bucket(oHash)]; entry != ABSENT; entry = nextInBucket[entry]) {
          if (Objects.equal(array[entry], o)) {
            return entry;
          }
        }
        return ABSENT;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  7. src/runtime/map_test.go

    	// behave differently.
    	m[nan] = 1
    	m[nan] = 2
    	m[nan] += 4
    
    	cnt := 0
    	s := 0
    	growflag := true
    	for k, v := range m {
    		if growflag {
    			// force a hashtable resize
    			for i := 0; i < 50; i++ {
    				m[float64(i)] = i
    			}
    			for i := 50; i < 100; i++ {
    				m[float64(i)] += i
    			}
    			growflag = false
    		}
    		if k != k {
    			cnt++
    			s |= v
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      PLACEHOLDER_FOR_GREATER_OP_CODES = 127,
      CUMSUM = 128,
      CALL_ONCE = 129,
      BROADCAST_TO = 130,
      RFFT2D = 131,
      CONV_3D = 132,
      IMAG=133,
      REAL=134,
      COMPLEX_ABS=135,
      HASHTABLE = 136,
      HASHTABLE_FIND = 137,
      HASHTABLE_IMPORT = 138,
      HASHTABLE_SIZE = 139,
      REDUCE_ALL = 140,
      CONV_3D_TRANSPOSE = 141,
      VAR_HANDLE = 142,
      READ_VARIABLE = 143,
      ASSIGN_VARIABLE = 144,
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. test-site/activator-launch-1.3.2.jar

    Object); public abstract int index(int); } scala/collection/mutable/HashTable$.class package scala.collection.mutable; public final synchronized class HashTable$ { public static final HashTable$ MODULE$; public static void <clinit>(); public static int defaultLoadFactor(); public static int newThreshold(int, int); public static int capacity(int); public static int powerOfTwo(int); private void HashTable$(); } scala/collection/mutable/HashTable$$anon$1.class package scala.collection.mutable; public final...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  10. cluster/gce/windows/common.psm1

    # cluster/gce/config-test.sh). $KubeEnv is a hash table containing the kube-env
    # metadata keys+values.
    function Test-IsTestCluster {
      param (
        [parameter(Mandatory=$true)] [hashtable]$KubeEnv
      )
    
      if ($KubeEnv.Contains('TEST_CLUSTER') -and `
          ($KubeEnv['TEST_CLUSTER'] -eq 'true')) {
        return $true
      }
      return $false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
Back to top