- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 1,889 for instanceOf (0.09 sec)
-
android/guava/src/com/google/common/graph/EndpointPair.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/BoostQueryCommand.java
return BoostQuery.class.getSimpleName(); } @Override public QueryBuilder execute(final QueryContext context, final Query query, final float boost) { if (query instanceof final BoostQuery boostQuery) { if (logger.isDebugEnabled()) { logger.debug("{}:{}", query, boost); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractMapEntry.java
@ParametricNullness public V setValue(@ParametricNullness V value) { throw new UnsupportedOperationException(); } @Override public boolean equals(@Nullable Object object) { if (object instanceof Entry) { Entry<?, ?> that = (Entry<?, ?>) object; return Objects.equals(this.getKey(), that.getKey()) && Objects.equals(this.getValue(), that.getValue()); } return false; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
* values} if it is a Set and therefore probably already deduplicated. */ int expectedValueCollectionSize(int defaultExpectedValues, Iterable<?> values) { if (values instanceof Collection<?>) { Collection<?> collection = (Collection<?>) values; return max(defaultExpectedValues, collection.size()); } else { return defaultExpectedValues; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 28.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosToken.java
ASN1TaggedObject mechToken = ASN1Util.as(ASN1TaggedObject.class, stream.readObject()); if (mechToken == null || mechToken.getTagClass() != BERTags.APPLICATION || !(mechToken.getBaseObject() instanceof ASN1Sequence)) { throw new PACDecodingException("Malformed kerberos token"); } this.apRequest = new KerberosApRequest((ASN1Sequence) mechToken.getBaseObject(), keys);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
guava/src/com/google/common/base/Enums.java
} @Override protected String doBackward(T enumValue) { return enumValue.name(); } @Override public boolean equals(@Nullable Object obj) { if (obj instanceof StringConverter) { StringConverter<?> that = (StringConverter<?>) obj; return this.enumClass.equals(that.enumClass); } return false; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 13:41:58 UTC 2025 - 4.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Equivalence.java
* identically to this equivalence. * * <p><b>Warning: do not depend</b> on the behavior of this method. * * <p>Historically, {@code Equivalence} instances in this library have implemented this method to * recognize certain cases where distinct {@code Equivalence} instances would in fact behave * identically. However, as code migrates to {@code java.util.function}, that behavior will * disappear. It is best not to depend on it. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 10 01:47:55 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
Map<String, Object> retrievedDoc = result.getDocumentList().get(0); assertEquals("complex", retrievedDoc.get("id")); assertTrue(retrievedDoc.get("nested") instanceof Map); assertTrue(retrievedDoc.get("list") instanceof List); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
return (T) method.invoke(target, args); } catch (final InvocationTargetException ex) { final Throwable t = ex.getCause(); if (t instanceof RuntimeException) { throw (RuntimeException) t; } if (t instanceof Error) { throw (Error) t; } throw new InvocationTargetRuntimeException(method.getDeclaringClass(), ex);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0)