- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 1,928 for instanceof (0.29 sec)
-
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) -
android/guava/src/com/google/common/base/Converter.java
/** * Returns a representation of {@code a} as an instance of type {@code B}. If {@code a} cannot be * converted, an unchecked exception (such as {@link IllegalArgumentException}) should be thrown. * * @param a the instance to convert; will never be null * @return the converted instance; <b>must not</b> be null */ @ForOverride protected abstract B doForward(A a);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 18 21:43:06 UTC 2025 - 22.8K 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) -
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/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) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
// Verify parent class initialization assertNotNull(msrpcShareGetInfo.info); assertTrue(msrpcShareGetInfo.info instanceof srvsvc.ShareInfo502); assertEquals(502, msrpcShareGetInfo.level); assertEquals(testServer, msrpcShareGetInfo.servername); assertEquals(testSharename, msrpcShareGetInfo.sharename); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0)