Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 734 for other_1 (0.17 sec)

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

        override fun equals(other: Any?): Boolean {
            if (this === other) return true
            if (javaClass != other?.javaClass) return false
    
            other as KaFirPackageSymbol
    
            if (fqName != other.fqName) return false
            if (token != other.token) return false
    
            return true
        }
    
        override fun hashCode(): Int {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/util/VersionNumber.java

        @Override
        public int compareTo(VersionNumber other) {
            logDeprecation(8);
            if (major != other.major) {
                return major - other.major;
            }
            if (minor != other.minor) {
                return minor - other.minor;
            }
            if (micro != other.micro) {
                return micro - other.micro;
            }
            if (patch != other.patch) {
                return patch - other.patch;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/KtFirJavaFieldSymbolPointer.kt

            return firSymbolBuilder.variableLikeBuilder.buildFieldSymbol(javaField.symbol)
        }
    
        override fun pointsToTheSameSymbolAs(other: KaSymbolPointer<KaSymbol>): Boolean = this === other ||
                other is KaFirJavaFieldSymbolPointer &&
                other.fieldName == fieldName &&
                hasTheSameOwner(other)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirBackingFieldSymbol.kt

            KaFirBackingFieldSymbolPointer(owningProperty.createPointer())
        }
    
        override fun equals(other: Any?): Boolean {
            if (this === other) return true
            if (javaClass != other?.javaClass) return false
    
            other as KaFirBackingFieldSymbol
    
            return this.firSymbol == other.firSymbol
        }
    
        override fun hashCode(): Int {
            return firSymbol.hashCode()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. CREDITS

      patent or other intellectual property rights of any other entity.
      Each Contributor disclaims any liability to Recipient for claims
      brought by any other entity based on infringement of intellectual
      property rights or otherwise. As a condition to exercising the
      rights and licenses granted hereunder, each Recipient hereby
      assumes sole responsibility to secure any other intellectual
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/FirCallableSignature.kt

        }
    
        override fun equals(other: Any?): Boolean {
            if (this === other) return true
            if (other !is FirCallableSignature) return false
    
            if (receiverType != other.receiverType) return false
            if (contextReceiverTypes != other.contextReceiverTypes) return false
            if (parameters != other.parameters) return false
            if (typeParametersCount != other.typeParametersCount) return false
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:06 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildBuildActionExecuterCrossVersionSpec.groovy

        def "can run task from included build when running a build action"() {
            given:
            settingsFile << "includeBuild('other-build')"
            file('other-build/settings.gradle') << """
                rootProject.name = 'other-build'
                include 'sub'
            """
            file('other-build/sub/build.gradle') << """
                tasks.register('doSomething') {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

        public fun KaType.isEqualTo(other: KaType): Boolean =
            withValidityAssertion { analysisSession.subtypingComponent.isEqualTo(this, other, KaSubtypingErrorTypePolicy.STRICT) }
    
        public fun KaType.isEqualTo(other: KaType, errorTypePolicy: KaSubtypingErrorTypePolicy): Boolean =
            withValidityAssertion { analysisSession.subtypingComponent.isEqualTo(this, other, errorTypePolicy) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. cmd/metacache-entries.go

    func (e *metaCacheEntry) matches(other *metaCacheEntry, strict bool) (prefer *metaCacheEntry, matches bool) {
    	if e == nil && other == nil {
    		return nil, true
    	}
    	if e == nil {
    		return other, false
    	}
    	if other == nil {
    		return e, false
    	}
    
    	// Name should match...
    	if e.name != other.name {
    		if e.name < other.name {
    			return e, false
    		}
    		return other, false
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/pointers/KtFe10PackageSymbolPointer.kt

            return KaFe10PackageSymbol(packageName, analysisSession.analysisContext)
        }
    
        override fun pointsToTheSameSymbolAs(other: KaSymbolPointer<KaSymbol>): Boolean = this === other ||
                other is KaFe10PackageSymbolPointer &&
                other.packageName == packageName
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top