Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for hashtable (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hasher.java

         */
        void putString(CharSequence value);
    
        /**
         * Feed a hash code into the hasher.
         */
        void putHash(HashCode hashCode);
    
        /**
         * Puts a hashable value into the hasher.
         */
        void put(Hashable hashable);
    
        /**
         * Feed a {@code null} value into the hasher.
         */
        void putNull();
    
        /**
         * Returns the combined hash.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 11:14:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

            return DEFAULT.hashFile(file);
        }
    
        /**
         * Hash the given {@code hashable} instance with the default hash function.
         */
        public static HashCode hashHashable(Hashable hashable) {
            Hasher hasher = newHasher();
            hasher.put(hashable);
            return hasher.hash();
        }
    
        /**
         * The default hashing function.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ValueSnapshot.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot;
    
    import org.gradle.internal.hash.Hashable;
    
    import javax.annotation.Nullable;
    
    /**
     * An immutable snapshot of the state of some Java object or object graph.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/force_shared_name_for_resource_ops.pbtxt

        }
      }
    }
    
    # CHECK: tf.HashTableV2
    # CHECK-SAME: shared_name = "hash_table_node"
    
    # CHECK: "tf.Variable"
    # CHECK-SAME: shared_name = "variable_node"
    # CHECK: "tf.VariableV2"
    # CHECK-SAME: shared_name = "variable_v2_node"
    
    # CHECK: "tf.BatchFunction"
    # CHECK-SAME: shared_name = "batch_node"
    
    # CHECK: func private @create_resource
    # CHECK: tf.HashTableV2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 31 02:37:48 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/hashtable_resource.mlir

    // CHECK:  operator_codes: [ {
    // CHECK:    deprecated_builtin_code: 32,
    // CHECK:    custom_code: "HashTableV2",
    // CHECK:    builtin_code: CUSTOM
    // CHECK: } ],
    // CHECK: subgraphs: [ {
    // CHECK:   tensors: [ {
    // CHECK:     shape: [  ],
    // CHECK:     type: RESOURCE,
    // CHECK:     buffer: 1,
    // CHECK:     name: "tf.HashTableV2",
    // CHECK:     quantization: {
    // CHECK-EMPTY
    // CHECK:     }
    // CHECK:   } ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FileSystemLocationFingerprint.java

     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint;
    
    import org.gradle.internal.file.FileType;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hashing;
    
    /**
     * An immutable fingerprint of some aspects of a file's metadata and content.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top