Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,504 for hash_code (0.25 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ProgramId.kt

        }
    
        override fun hashCode(): Int {
            var result = templateId.hashCode()
            result = 31 * result + sourceHash.hashCode()
            parentClassLoader.get()?.let { loader ->
                result = 31 * result + loader.hashCode()
            }
            accessorsClassPathHash?.let { classPathHash ->
                result = 31 * result + classPathHash.hashCode()
            }
            classPathHash?.let { classPathHash ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:57 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/CachingExcludeFactory.java

            private final ExcludeSpec right;
            private final int hashCode;
    
            // Optimizes comparisons by making sure that the 2 elements of
            // the pair are "sorted" by hashcode ascending
            private static ExcludePair of(ExcludeSpec left, ExcludeSpec right) {
                if (left.hashCode() > right.hashCode()) {
                    return new ExcludePair(right, left);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/typed_xds_cache_test.go

    		ConfigKey{Kind: kind.DestinationRule, Name: "name", Namespace: "namespace"}.HashCode(): sets.New(firstEntry.Key()),
    		ConfigKey{Kind: kind.Gateway, Name: "name", Namespace: "namespace"}.HashCode():         sets.New(firstEntry.Key()),
    		ConfigKey{Kind: kind.EnvoyFilter, Name: "name", Namespace: "namespace"}.HashCode():     sets.New(secondEntry.Key()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/CachingFileHasher.java

        static class FileInfo {
            private final HashCode hash;
            private final long timestamp;
            private final long length;
    
            public FileInfo(HashCode hash, long length, long timestamp) {
                this.hash = hash;
                this.length = length;
                this.timestamp = timestamp;
            }
    
            public HashCode getHash() {
                return hash;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 13:47:15 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

          }
        }
    
      // Avoid Long.hashCode(long) which isn't available on Android 5.
      override fun hashCode(): Int {
        var result = 0
        result = 31 * result + version.toInt()
        result = 31 * result + serialNumber.hashCode()
        result = 31 * result + signature.hashCode()
        result = 31 * result + issuer.hashCode()
        result = 31 * result + validity.hashCode()
        result = 31 * result + subject.hashCode()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/DefaultCurrentFileCollectionFingerprint.java

        private final String identifier;
        private final FileSystemSnapshot roots;
        private final ImmutableMultimap<String, HashCode> rootHashes;
        private final HashCode strategyConfigurationHash;
        private HashCode hash;
    
        public static CurrentFileCollectionFingerprint from(FileSystemSnapshot roots, FingerprintingStrategy strategy, @Nullable  FileCollectionFingerprint candidate) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashCodeTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/specs/AbstractCompositeSpecTest.java

            assert createCompositeSpec(spec1).hashCode() == createCompositeSpec(spec1).hashCode();
            assert createCompositeSpec(spec1).hashCode() != createCompositeSpec(spec2).hashCode();
    
            assert createCompositeSpec(spec1, spec2).hashCode() == createCompositeSpec(spec1, spec2).hashCode();
            assert createCompositeSpec(spec2, spec1).hashCode() == createCompositeSpec(spec2, spec1).hashCode();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/result/DefaultResolvedVariantResult.java

        }
    
        @Override
        public int hashCode() {
            return hashCode;
        }
    
        private int computeHashCode() {
            int result = owner.hashCode();
            result = 31 * result + displayName.hashCode();
            result = 31 * result + attributes.hashCode();
            result = 31 * result + capabilities.hashCode();
            if (externalVariant != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformWorkspaceIdentity.java

            return uniqueId.equals(that.uniqueId);
        }
    
        @Override
        public int hashCode() {
            return uniqueId.hashCode();
        }
    
        public static TransformWorkspaceIdentity createMutable(
            String normalizedInputArtifactPath,
            String producerBuildTreePath,
            ValueSnapshot secondaryInputsSnapshot,
            HashCode dependenciesHash
        ) {
            Hasher hasher = Hashing.newHasher();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 10:18:24 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top