Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for hash_code (0.14 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirEnumEntrySymbol.kt

                ?: KaFirEnumEntrySymbolPointer(analysisSession.createOwnerPointer(this), firSymbol.name)
        }
    
        override fun equals(other: Any?): Boolean = symbolEquals(other)
        override fun hashCode(): Int = symbolHashCode()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

    import org.gradle.internal.configuration.problems.PropertyProblem
    import org.gradle.internal.configuration.problems.StructuredMessage
    import org.gradle.internal.cc.base.logger
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    import org.gradle.internal.hash.HashingOutputStream
    import org.gradle.internal.problems.failure.Failure
    import org.gradle.internal.service.scopes.Scope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirUsualClassType.kt

        override val abbreviatedType: KaUsualClassType? by cached {
            builder.buildAbbreviatedType(coneType)
        }
    
        override fun equals(other: Any?) = typeEquals(other)
        override fun hashCode() = typeHashcode()
        override fun toString() = coneType.renderForDebugging()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingClosure.kt

            javaClass == (other as? CrossProjectModelAccessTrackingClosure<*>)?.javaClass &&
                other.delegate == delegate &&
                other.referrerProject == referrerProject
    
        override fun hashCode(): Int = Objects.hash(delegate, referrerProject)
    
        override fun toString(): String = "CrossProjectModelAccessTrackingClosure($delegate, $referrerProject)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirClassErrorType.kt

        }
    
        override val abbreviatedType: KaUsualClassType? by cached {
            builder.buildAbbreviatedType(coneType)
        }
    
        override fun equals(other: Any?) = typeEquals(other)
        override fun hashCode() = typeHashcode()
        override fun toString() = coneType.renderForDebugging()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KaAnnotationImpl.kt

                    backingIndex == other.backingIndex &&
                    backingConstructorSymbol == other.backingConstructorSymbol &&
                    backingArguments == other.backingArguments
        }
    
        override fun hashCode(): Int {
            return Objects.hash(
                backingClassId,
                backingPsi,
                backingUseSiteTarget,
                backingHasArguments,
                backingIndex,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirJavaFieldSymbol.kt

            KaFirJavaFieldSymbolPointer(analysisSession.createOwnerPointer(this), name, firSymbol.isStatic)
        }
    
        override fun equals(other: Any?): Boolean = symbolEquals(other)
        override fun hashCode(): Int = symbolHashCode()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirLocalVariableSymbol.kt

            }
    
            throw CanNotCreateSymbolPointerForLocalLibraryDeclarationException(name.asString())
        }
    
        override fun equals(other: Any?): Boolean = symbolEquals(other)
        override fun hashCode(): Int = symbolHashCode()
    }
    
    internal class KaFirLocalVariableSymbol(firSymbol: FirPropertySymbol, analysisSession: KaFirSession) :
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                ),
                equalTo("my value source has changed")
            )
        }
    
        private
        fun invalidationReasonForInitScriptsChange(
            from: Iterable<Pair<File, HashCode>>,
            to: List<Pair<File, HashCode>>
        ): InvalidationReason? = to.toMap().let { toMap ->
            checkFingerprintGiven(
                mock {
                    on { allInitScripts } doReturn toMap.keys.toList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirTypeAliasSymbol.kt

                else -> throw UnsupportedSymbolKind(this::class, symbolKind)
            }
        }
    
        override fun equals(other: Any?): Boolean = symbolEquals(other)
        override fun hashCode(): Int = symbolHashCode()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top