Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 334 for hash_code (0.23 sec)

  1. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                hash = hash * 31 + groupId.hashCode();
                hash = hash * 31 + artifactId.hashCode();
                hash = hash * 31 + classifier.hashCode();
                hash = hash * 31 + extension.hashCode();
                hash = hash * 31 + version.hashCode();
                hash = hash * 31 + localRepo.hashCode();
                hash = hash * 31 + repositories.hashCode();
                hashCode = hash;
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

            this.hashCode = computeHashCode();
        }
    
        private int computeHashCode() {
            int hashCode = from.hashCode();
            hashCode = 31 * hashCode + dependencyState.hashCode();
            if (transitiveExclusions != null) {
                hashCode = 31 * hashCode + transitiveExclusions.hashCode();
            }
            return hashCode;
        }
    
        void computeSelector() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtPredicates.kt

        public fun negated(): KaContractIsInstancePredicateExpression = KaContractIsInstancePredicateExpression(argument, type, !isNegated)
    
        override fun hashCode(): Int = Objects.hashCode(backingArgument, backingType, backingIsNegated)
        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaContractIsInstancePredicateExpression &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/MapSerializer.java

            return Objects.equal(keySerializer, rhs.keySerializer)
                && Objects.equal(valueSerializer, rhs.valueSerializer);
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(super.hashCode(), keySerializer, valueSerializer);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/DefaultTestOutputEvent.java

            }
            if (!message.equals(that.message)) {
                return false;
            }
    
            return true;
        }
    
        @Override
        public int hashCode() {
            int result = destination.hashCode();
            result = 31 * result + message.hashCode();
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/EnumValueSnapshot.java

            }
    
            EnumValueSnapshot other = (EnumValueSnapshot) obj;
            return className.equals(other.className) && name.equals(other.name);
        }
    
        @Override
        public int hashCode() {
            return className.hashCode() ^ name.hashCode();
        }
    
        @Override
        public String toString() {
            return className + "." + name;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:43 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPackageSymbol.kt

            if (fqName != other.fqName) return false
            if (token != other.token) return false
    
            return true
        }
    
        override fun hashCode(): Int {
            var result = fqName.hashCode()
            result = 31 * result + token.hashCode()
            return result
        }
    }
    
    class KtPackage(
        manager: PsiManager,
        private val fqName: FqName,
        private val scope: GlobalSearchScope
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

            val fileSystemInputs: FileCollectionInternal,
            val fileSystemInputsFingerprint: HashCode
        ) : ConfigurationCacheFingerprint()
    
        data class InputFile(
            val file: File,
            val hash: HashCode
        ) : ConfigurationCacheFingerprint()
    
        data class DirectoryChildren(
            val file: File,
            val hash: HashCode
        ) : ConfigurationCacheFingerprint()
    
        data class InputFileSystemEntry(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                    // hashcode will always be used, so we precompute it in order to make sure we
                    // won't compute it multiple times during comparisons
                    int result = lookupClass != null ? lookupClass.hashCode() : 0;
                    result = 31 * result + (methodName != null ? methodName.hashCode() : 0);
                    result = 31 * result + Arrays.hashCode(parameterTypes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

                ImmutableMap.Builder<String, HashCode> classHashes = ImmutableMap.builderWithExpectedSize(count);
                for (int i = 0; i < count; i++) {
                    String className = hierarchicalNameSerializer.read(decoder);
                    HashCode hashCode = hashCodeSerializer.read(decoder);
                    classHashes.put(className, hashCode);
                }
    
                count = decoder.readSmallInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top