Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for equalTo (0.32 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/composition/DefaultDependencyManagementImporter.java

        }
    
        private boolean equals(Dependency d1, Dependency d2) {
            return Objects.equals(d1.getGroupId(), d2.getGroupId())
                    && Objects.equals(d1.getArtifactId(), d2.getArtifactId())
                    && Objects.equals(d1.getVersion(), d2.getVersion())
                    && Objects.equals(d1.getType(), d2.getType())
                    && Objects.equals(d1.getClassifier(), d2.getClassifier())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultDependencyManagementImporter.java

        }
    
        private boolean equals(Dependency d1, Dependency d2) {
            return Objects.equals(d1.getGroupId(), d2.getGroupId())
                    && Objects.equals(d1.getArtifactId(), d2.getArtifactId())
                    && Objects.equals(d1.getVersion(), d2.getVersion())
                    && Objects.equals(d1.getType(), d2.getType())
                    && Objects.equals(d1.getClassifier(), d2.getClassifier())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 06:13:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtEffects.kt

        override fun hashCode(): Int = Objects.hashCode(backingValueParameterReference, backingOccurrencesRange)
        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaContractCallsInPlaceContractEffectDeclaration &&
                    other.backingValueParameterReference == backingValueParameterReference &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelVersionParser.java

                }
            }
    
            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                DefaultVersion that = (DefaultVersion) o;
                return delegate.equals(that.delegate);
            }
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

                    if (JavaPathType.CLASSES.equals(type)) {
                        classes = true;
                    } else if (JavaPathType.MODULES.equals(type)) {
                        modules = true;
                    } else if (JavaPathType.PROCESSOR_CLASSES.equals(type)) {
                        processorClasses = true;
                    } else if (JavaPathType.PROCESSOR_MODULES.equals(type)) {
                        processorModules = true;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/signatures/KtFirVariableLikeSignature.kt

            KaFirVariableLikeSubstitutorBasedSignature(token, firSymbol, firSymbolBuilder, chainedSubstitutor)
        }
    
        override fun equals(other: Any?): Boolean {
            if (!super.equals(other)) return false
    
            other as KaFirVariableLikeSubstitutorBasedSignature<*>
            return coneSubstitutor == other.coneSubstitutor
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSmartCastProvider.kt

    ) : KaLifetimeOwner {
        public val isStable: Boolean get() = withValidityAssertion { backingIsStable }
        public val smartCastType: KaType get() = withValidityAssertion { backingSmartCastType }
    
        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaSmartCastInfo &&
                    other.backingSmartCastType == backingSmartCastType &&
                    other.backingIsStable == backingIsStable
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtValues.kt

        public enum class KaContractConstantType {
            NULL, TRUE, FALSE;
        }
    
        public val constantType: KaContractConstantType get() = withValidityAssertion { backingConstantType }
    
        override fun equals(other: Any?): Boolean {
            return this === other || other is KaContractConstantValue && other.backingConstantType == backingConstantType
        }
    
        override fun hashCode(): Int = backingConstantType.hashCode()
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtLogicalCombinators.kt

        public val operation: KaLogicOperation get() = withValidityAssertion { backingOperation }
    
        override fun hashCode(): Int = Objects.hashCode(backingLeft, backingRight, backingOperation)
        override fun equals(other: Any?): Boolean {
            return this === other ||
                    other is KaContractBinaryLogicExpression &&
                    other.backingLeft == backingLeft &&
                    other.backingRight == backingRight &&
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/booleans/KtContractBooleanExpression.kt

        public val parameterSymbol: KaParameterSymbol get() = withValidityAssertion { backingParameterSymbol }
        override fun hashCode(): Int = backingParameterSymbol.hashCode()
        override fun equals(other: Any?): Boolean {
            return this === other || other is KaContractBooleanValueParameterExpression && other.backingParameterSymbol == backingParameterSymbol
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top