Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 693 for hash_code (0.19 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/classpath/DefaultClassSetAnalyzer.java

                }
            }
    
            protected abstract HashCode getHashCode(FileVisitDetails fileDetails);
        }
    
        private class JarEntryVisitor extends EntryVisitor {
    
            public JarEntryVisitor(ClassDependentsAccumulator accumulator, boolean abiOnly) {
                super(accumulator, abiOnly);
            }
    
            @Override
            protected HashCode getHashCode(FileVisitDetails fileDetails) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/FirCallableSignature.kt

            return returnType == other.returnType
    
        }
    
        override fun hashCode(): Int {
            var result = receiverType?.hashCode() ?: 0
            result = 31 * result + contextReceiverTypes.hashCode()
            result = 31 * result + parameters.hashCode()
            result = 31 * result + typeParametersCount.hashCode()
            result = 31 * result + returnType.hashCode()
            return result
        }
    
        companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:06 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/RegularImmutableSet.java

      private final transient Object[] elements;
      private final transient int hashCode;
      // the same values as `elements` in hashed positions (plus nulls)
      @VisibleForTesting final transient @Nullable Object[] table;
      // 'and' with an int to get a valid table index.
      private final transient int mask;
    
      RegularImmutableSet(Object[] elements, int hashCode, @Nullable Object[] table, int mask) {
        this.elements = elements;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingStateFactory.java

    import org.gradle.internal.hash.HashCode;
    
    public interface CachingStateFactory {
    
        /**
         * Creates a CachingState for beforeExecutionState, that can be either Enabled or Disabled.
         */
        CachingState createCachingState(BeforeExecutionState beforeExecutionState, HashCode cacheKey, ImmutableList<CachingDisabledReason> cachingDisabledReasons);
    
        HashCode calculateCacheKey(BeforeExecutionState beforeExecutionState);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 17:44:52 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10VariableLikeSignature.kt

            if (backingReceiverType != other.backingReceiverType) return false
    
            return true
        }
    
        override fun hashCode(): Int {
            var result = backingSymbol.hashCode()
            result = 31 * result + backingReturnType.hashCode()
            result = 31 * result + (backingReceiverType?.hashCode() ?: 0)
            return result
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/InvalidatableSet.java

        this.validator = validator;
        this.errorMessage = errorMessage;
      }
    
      // Override hashCode() to access delegate directly (so that it doesn't trigger the validate() call
      // via delegate()); it seems inappropriate to throw ISE on this method.
      @Override
      public int hashCode() {
        return delegate.hashCode();
      }
    
      private void validate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ComponentVariantNodeIdentifier.java

            if (!componentId.equals(that.componentId)) {
                return false;
            }
            return variantName.equals(that.variantName);
        }
    
        @Override
        public int hashCode() {
            return componentId.hashCode() ^ variantName.hashCode();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/signatures/KtFirVariableLikeSignature.kt

            if (!super.equals(other)) return false
    
            other as KaFirVariableLikeSubstitutorBasedSignature<*>
            return coneSubstitutor == other.coneSubstitutor
        }
    
        override fun hashCode(): Int = 31 * super.hashCode() + coneSubstitutor.hashCode()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top