Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getHashValue (0.46 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/snapshot/impl/DefaultSnapshottingService.java

                this.hashCode = hashCode;
            }
    
            @Override
            public String getHashValue() {
                return hashCode.toString();
            }
    
            @Override
            public String toString() {
                return format("DefaultSnapshot { hashValue='%s' }", getHashValue());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/snapshot/Snapshot.java

     */
    
    package org.gradle.internal.snapshot;
    
    /**
     * Snapshot directory or regular file.
     */
    public interface Snapshot {
    
        /**
         * Returns the hash of the snapshot.
         */
        String getHashValue();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 819 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.h

      static mlir::TF::ResourceHandle getTombstoneKey() {
        return {/*container=*/"", /*name=*/"", /*device=*/"",
                /*op=*/DenseMapInfo<mlir::Operation*>::getTombstoneKey()};
      }
    
      static unsigned getHashValue(
          const mlir::TF::ResourceHandle& resource_handle) {
        return mlir::TF::hash_value(resource_handle);
      }
    
      static bool isEqual(const mlir::TF::ResourceHandle& lhs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 03 19:26:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/device_target.h

      struct SignatureInfo : public llvm::DenseMapInfo<Signature> {
        static inline Signature getEmptyKey() { return {}; }
        static inline Signature getTombstoneKey() { return {nullptr}; }
        static unsigned getHashValue(Signature val) {
          return llvm::hash_combine_range(val.begin(), val.end());
        }
        static bool isEqual(Signature LHS, Signature RHS) {
          if (RHS == getEmptyKey()) return LHS == getEmptyKey();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 10:41:08 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top