- Sort Score
- Num 10 results
- Language All
Results 421 - 430 of 1,261 for instanceof (0.18 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/graph/ImmutableNetwork.java
} /** Returns an immutable copy of {@code network}. */ public static <N, E> ImmutableNetwork<N, E> copyOf(Network<N, E> network) { return (network instanceof ImmutableNetwork) ? (ImmutableNetwork<N, E>) network : new ImmutableNetwork<N, E>(network); } /** * Simply returns its argument. * * @deprecated no need to use this */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 01:10:31 GMT 2026 - 9.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
new String[] { "perm1", "perm2" }); // Verify the interface extends Serializable assertTrue(user instanceof java.io.Serializable); } @Test public void test_allFieldsCombination() { // Test with all fields populated String name = "complexUser";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 11.2K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/UnsignedLong.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jun 04 13:03:16 GMT 2025 - 8.8K bytes - Click Count (0) -
src/test/java/org/codelibs/core/collection/ArrayMapTest.java
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 10.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
} private static String toStringOrNull(final Object value) { if (value == null) { return null; } if (value instanceof String) { return (String) value; } return value.toString(); } /** * Gets the source index. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java
entity.setCreatedBy(username); entity.setCreatedTime(currentTime); return entity; }); case CrudMode.EDIT: if (form instanceof EditForm) { return ComponentUtil.getComponent(AccessTokenService.class).getAccessToken(((EditForm) form).id); } break; default: break; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 15.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
// Verify that serialVersionUID is defined assertTrue(fessEnv instanceof java.io.Serializable); // Test that the SimpleImpl class can be instantiated FessEnv.SimpleImpl newInstance = new FessEnv.SimpleImpl(); assertNotNull(newInstance); // Verify default values work for new instance assertEquals("warm", newInstance.getLastaDiSmartDeployMode()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java
/* * We avoid reflecting on NullMarked because its @Target(..., MODULE) causes problems * under JDK 8. */ if (!(a instanceof NullMarked) && a.annotationType().isAnnotationPresent(TesterAnnotation.class)) { annotations.add(a); } } annotations = unmodifiableList(annotations);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 12.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/ImmutableTableTest.java
for (int i = 1; i < 0x10000; i++) { builder.put(i, 0, "foo"); builder.put(0, i, "bar"); } assertTrue(builder.buildOrThrow() instanceof SparseImmutableTable); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 18.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
final HttpSession session = request.getSession(false); if (session != null) { final Object resultsPerPage = session.getAttribute(Constants.RESULTS_PER_PAGE); if (resultsPerPage instanceof Integer) { form.num = (Integer) resultsPerPage; } } // labelCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 18 04:42:56 GMT 2026 - 14K bytes - Click Count (0)