Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 296 for hash_code (0.26 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileCollectionFingerprintSerializer.java

            }
            ImmutableMultimap<String, HashCode> rootHashes = readRootHashes(decoder);
            HashCode strategyConfigurationHash = hashCodeSerializer.read(decoder);
            return new SerializableFileCollectionFingerprint(fingerprints, rootHashes, strategyConfigurationHash);
        }
    
        private ImmutableMultimap<String, HashCode> readRootHashes(Decoder decoder) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtEffects.kt

        public val occurrencesRange: EventOccurrencesRange get() = withValidityAssertion { backingOccurrencesRange }
    
        override fun hashCode(): Int = Objects.hashCode(backingValueParameterReference, backingOccurrencesRange)
        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaContractCallsInPlaceContractEffectDeclaration &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

            }
    
            @Override
            public void putHash(HashCode hashCode) {
                hashCode.appendToHasher(this);
            }
    
            @Override
            public HashCode hash() {
                byte[] bytes = getDigest().digest();
                digest = null;
                return HashCode.fromBytes(bytes, SAFE_TO_REUSE_BYTES);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

        }
    
        @Override
        public int hashCode() {
          return 0;
        }
      }
    
      static class SameIntegerInstance {
        private final Integer i;
    
        public SameIntegerInstance(Integer i) {
          this.i = checkNotNull(i);
        }
    
        @Override
        public int hashCode() {
          return i.hashCode();
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/DefaultFileSystemLocationFingerprint.java

    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    
    public class DefaultFileSystemLocationFingerprint implements FileSystemLocationFingerprint {
        private final HashCode normalizedContentHash;
        private final String normalizedPath;
    
        public DefaultFileSystemLocationFingerprint(String normalizedPath, FileType type, HashCode contentHash) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenUniqueSnapshotComponentIdentifier.java

            this.timestamp = timestamp;
            this.hashCode = super.hashCode() + timestamp.hashCode();
        }
    
        @Override
        public boolean equals(Object o) {
            return super.equals(o) && ((MavenUniqueSnapshotComponentIdentifier) o).timestamp.equals(timestamp);
        }
    
        @Override
        public int hashCode() {
            return hashCode;
        }
    
        @Override
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 10:27:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

                writeClassPath(scope.exportClassPath)
            }
        }
    
        private
        fun WriteContext.writeHashCode(hashCode: HashCode?) {
            if (hashCode == null) {
                writeBoolean(false)
            } else {
                writeBoolean(true)
                writeBinary(hashCode.toByteArray())
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10FunctionLikeSignature.kt

            return true
        }
    
        override fun hashCode(): Int {
            var result = backingSymbol.hashCode()
            result = 31 * result + backingReturnType.hashCode()
            result = 31 * result + (backingReceiverType?.hashCode() ?: 0)
            result = 31 * result + backingValueParameters.hashCode()
            return result
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HashCodeSerializer.java

    import org.gradle.internal.hash.HashCode;
    
    import java.io.IOException;
    
    @Immutable
    public class HashCodeSerializer extends AbstractSerializer<HashCode> {
        @Override
        public HashCode read(Decoder decoder) throws IOException {
            byte hashSize = decoder.readByte();
            byte[] hash = new byte[hashSize];
            decoder.readBytes(hash);
            return HashCode.fromBytes(hash);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:33:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtLogicalCombinators.kt

        public val right: KaContractBooleanExpression get() = withValidityAssertion { backingRight }
        public val operation: KaLogicOperation get() = withValidityAssertion { backingOperation }
    
        override fun hashCode(): Int = Objects.hashCode(backingLeft, backingRight, backingOperation)
        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaContractBinaryLogicExpression &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top