- Sort Score
- Result 10 results
- Languages All
Results 541 - 550 of 1,224 for equal (0.01 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerRequest.java
} @Override public boolean equals(Object o) { return o instanceof DefaultArtifactDeployerRequest that && retryFailedDeploymentCount == that.retryFailedDeploymentCount && Objects.equals(repository, that.repository) && Objects.equals(artifacts, that.artifacts); } @OverrideRegistered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
return repositories; } @Override public boolean equals(Object o) { return o instanceof DefaultArtifactResolverRequest that && Objects.equals(coordinates, that.coordinates) && Objects.equals(repositories, that.repositories); } @Override public int hashCode() {Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ComparatorOrdering.java
return comparator.compare(a, b); } @Override public boolean equals(@Nullable Object object) { if (object == this) { return true; } if (object instanceof ComparatorOrdering) { ComparatorOrdering<?> that = (ComparatorOrdering<?>) object; return this.comparator.equals(that.comparator); } return false; } @Override public int hashCode() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeImplTest.java
} // Test case for the equals method @Test void testEquals() { SmbTreeImpl tree1 = new SmbTreeImpl(session, "SHARE", "A:"); SmbTreeImpl tree2 = new SmbTreeImpl(session, "SHARE", "A:"); SmbTreeImpl tree3 = new SmbTreeImpl(session, "OTHER", "A:"); assertEquals(tree1, tree2); assertFalse(tree1.equals(tree3)); } // Test case for the unwrap methodRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlingAccessException.java
* @return true if DEBUG, false otherwise */ public boolean isDebugEnabled() { return DEBUG.equals(logLevel); } /** * Checks if the log level is INFO. * * @return true if INFO, false otherwise */ public boolean isInfoEnabled() { return INFO.equals(logLevel); } /** * Checks if the log level is WARN. *Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java
@Override public boolean equals(Object o) { return o instanceof DefaultSettingsBuilderRequest that && Objects.equals(installationSettingsSource, that.installationSettingsSource) && Objects.equals(projectSettingsSource, that.projectSettingsSource) && Objects.equals(userSettingsSource, that.userSettingsSource)Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 9.4K bytes - Viewed (0) -
compat/maven-compat/src/main/mdo/profiles.mdo
</fields> <!-- prevent modello generation of an incorrect equals method. Could be avoided by using <identity/> tags to mark ID as the only identity field --> <codeSegments> <codeSegment> <version>1.0.0</version> <code><![CDATA[ public boolean equals( Object obj ) { return super.equals( obj ); } ]]></code> </codeSegment>Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 22 11:03:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/AbstractInvocationHandlerTest.java
super(delegate); } @Override public boolean equals(@Nullable Object obj) { if (obj instanceof DelegatingInvocationHandlerWithEquals) { DelegatingInvocationHandlerWithEquals that = (DelegatingInvocationHandlerWithEquals) obj; return delegate.equals(that.delegate); } else { return false; } } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 02:48:50 UTC 2024 - 5.7K bytes - Viewed (0)