Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 90 for hashtable (0.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/hash_table_asset_v1.py

    # CHECK-SAME: [[ARG1:%.*]]: tensor<!tf_type.string> {tf_saved_model.bound_input = @[[asset1]]}
    # CHECK-SAME: tf_saved_model.initializer_type = "init_op"
    # CHECK-NEXT: [[R0:%.*]] = "tf.HashTableV2"()
    # CHECK-SAME: shared_name = "[[hash_table:.*]]"
    # CHECK-NEXT: "tf.InitializeTableFromTextFileV2"([[R0]], [[ARG0]])
    
    
    def write_vocabulary_file(vocabulary):
      """Write temporary vocab file for module construction."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		return 0
    	}
    	d.linkctxt.Errorf(symIdx, "internal error: no entry for sym %d in rtmap\n", symIdx)
    	return 0
    }
    
    // Find child by AT_name using hashtable if available or linear scan
    // if not.
    func findchild(die *dwarf.DWDie, name string) *dwarf.DWDie {
    	var prev *dwarf.DWDie
    	for ; die != prev; prev, die = die, walktypedef(die) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/runtime/map.go

    // high-order bits of each hash to distinguish the entries
    // within a single bucket.
    //
    // If more than 8 keys hash to a bucket, we chain on
    // extra buckets.
    //
    // When the hashtable grows, we allocate a new array
    // of buckets twice as big. Buckets are incrementally
    // copied from the old bucket array to the new bucket array.
    //
    // Map iterators walk through the array of buckets and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractMapSnapshot.java

     */
    
    package org.gradle.internal.snapshot.impl;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    class AbstractMapSnapshot<T extends Hashable> implements Hashable {
        protected final ImmutableList<MapEntrySnapshot<T>> entries;
    
        public AbstractMapSnapshot(ImmutableList<MapEntrySnapshot<T>> entries) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

    // CHECK-SAME: {tf_saved_model.exported_names = ["__tf_saved_model_session_initializer_NoOp"]}
    // CHECK: %[[HASH_TABLE0:.*]] = "tf.HashTableV2"()
    // CHECK: "tf.InitializeTableFromTextFileV2"(%[[HASH_TABLE0]], %[[ARG0]])
    // CHECK: return
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractManagedValueSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    class AbstractManagedValueSnapshot<T extends Hashable> implements Hashable {
        protected final T state;
    
        public AbstractManagedValueSnapshot(T state) {
            this.state = state;
        }
    
        public T getState() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/ImplementationSnapshotTest.groovy

            expect:
            actionLambdaSnapshot != consumerLambdaSnapshot
            hash(actionLambdaSnapshot) != hash(consumerLambdaSnapshot)
        }
    
        private HashCode hash(Hashable hashable) {
            def hasher = Hashing.newHasher()
            hasher.put(hashable)
            return hasher.hash()
        }
    
        private ImplementationSnapshot createLambdaSnapshot(lambda) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:07 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractArraySnapshot.java

     */
    
    package org.gradle.internal.snapshot.impl;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    import java.util.List;
    
    class AbstractArraySnapshot<T extends Hashable> implements Hashable {
        protected final ImmutableList<T> elements;
    
        public AbstractArraySnapshot(ImmutableList<T> elements) {
            this.elements = elements;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractListSnapshot.java

     */
    
    package org.gradle.internal.snapshot.impl;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    import java.util.List;
    
    class AbstractListSnapshot<T extends Hashable> implements Hashable {
        protected final ImmutableList<T> elements;
    
        public AbstractListSnapshot(ImmutableList<T> elements) {
            this.elements = elements;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractSetSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    class AbstractSetSnapshot<T extends Hashable> implements Hashable {
        protected final ImmutableSet<T> elements;
    
        public AbstractSetSnapshot(ImmutableSet<T> elements) {
            this.elements = elements;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top