- Sort Score
- Result 10 results
- Languages All
Results 1141 - 1150 of 2,158 for Boolean (0.57 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/QueueTestSuiteBuilder.java
public static <E> QueueTestSuiteBuilder<E> using(TestQueueGenerator<E> generator) { return new QueueTestSuiteBuilder<E>().usingGenerator(generator); } private boolean runCollectionTests = true; /** * Specify whether to skip the general collection tests. Call this method when testing a * collection that's both a queue and a list, to avoid running the common collection tests twice.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 26 19:46:10 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/ParameterizedClassDesc.java
*/ public interface ParameterizedClassDesc { /** * このインスタンスが表現するクラスがパラメタ化されていれば<code>true</code>を返します。 * * @return このインスタンスが表現するクラスがパラメタ化されていれば<code>true</code> */ boolean isParameterizedClass(); /** * 原型となるクラスを返します。 * * @param <T> * 原型となるクラスの型 * @return 原型となるクラス * @see ParameterizedType#getRawType() */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/IndexedImmutableSet.java
ImmutableList<E> createAsList() { return new ImmutableAsList<E>() { @Override public E get(int index) { return IndexedImmutableSet.this.get(index); } @Override boolean isPartialView() { return IndexedImmutableSet.this.isPartialView(); } @Override public int size() { return IndexedImmutableSet.this.size(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SecurityBlob.java
return new SecurityBlob(this.b.clone()); } /* * (non-Javadoc) * * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals ( Object arg0 ) { try { SecurityBlob t = (SecurityBlob) arg0; for ( int i = 0; i < this.b.length; i++ ) { if ( this.b[ i ] != t.b[ i ] ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/SMBSigningDigest.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 2.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PathSource.java
Path relatedPom = locator.locateExistingPom(path); if (relatedPom != null) { return new PathSource(relatedPom); } return null; } @Override public boolean equals(Object o) { return this == o || o.getClass() == getClass() && Objects.equals(path, ((PathSource) o).path); } @Override public int hashCode() { return Objects.hash(path); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Sep 18 11:42:07 UTC 2024 - 2.5K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/AbstractBuildScanInfoCollectingService.kt
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 11 07:01:27 UTC 2022 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileConfigCQ.java
return this; } public void setAvailable_Equal(Boolean available) { setAvailable_Term(available, null); } public void setAvailable_Equal(Boolean available, ConditionOptionCall<TermQueryBuilder> opLambda) { setAvailable_Term(available, opLambda); } public void setAvailable_Term(Boolean available) { setAvailable_Term(available, null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 165.3K bytes - Viewed (0) -
guava/src/com/google/common/graph/Network.java
* undirected edges connect a pair of nodes to each other. */ boolean isDirected(); /** * Returns true if this network allows parallel edges. Attempting to add a parallel edge to a * network that does not allow them will throw an {@link IllegalArgumentException}. */ boolean allowsParallelEdges(); /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 10 15:41:27 UTC 2024 - 22.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/BaseComparable.java
private final String s; public BaseComparable(String s) { this.s = s; } @Override public int hashCode() { // delegate to 's' return s.hashCode(); } @Override public boolean equals(@Nullable Object other) { if (other == null) { return false; } else if (other instanceof BaseComparable) { return s.equals(((BaseComparable) other).s); } else { return false; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Apr 20 11:19:03 UTC 2023 - 1.5K bytes - Viewed (0)