- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 1,353 for EMPTY (0.06 sec)
-
src/test/java/jcifs/internal/TreeConnectResponseTest.java
@Test @DisplayName("Should handle empty service string") void testEmptyService() throws Exception { SmbComTreeConnectAndXResponse response = new SmbComTreeConnectAndXResponse(mockConfig, null); // Test empty service setPrivateField(response, "service", ""); assertEquals("", response.getService(), "Should handle empty service string");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
} } } hash = buf.toString(); } else { hash = StringUtil.EMPTY; } } else { hash = StringUtil.EMPTY; } if (!isFileSystemPath(targetUrl)) { return HtmlResponse.fromRedirectPathAsIs(DocumentUtil.encodeUrl(targetUrl + hash)); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
assertNull(exception.getMessage()); assertNull(exception.getCause()); } public void test_constructorWithScheduledJob_emptyToString() { // Test with scheduled job that returns empty string from toString ScheduledJob scheduledJob = new ScheduledJob() { @Override public String toString() { return ""; } };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java
private TestingExecutors() {} /** * Returns a {@link ScheduledExecutorService} that never executes anything. * * <p>The {@code shutdownNow} method of the returned executor always returns an empty list despite * the fact that everything is still technically awaiting execution. The {@code getDelay} method * of any {@link ScheduledFuture} returned by the executor will always return the max long value
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
}, validationErrorLambda); } final String oldPassword = getSession().map(session -> (String) session.getAttribute(INVALID_OLD_PASSWORD)).orElse(StringUtil.EMPTY); fessLoginAssist.findLoginUser(new LocalUserCredential(getUserBean().get().getUserId(), oldPassword)).orElseGet(() -> { throwValidationError(messages -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/HashBasedTable.java
@GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** Creates an empty {@code HashBasedTable}. */ public static <R, C, V> HashBasedTable<R, C, V> create() { return new HashBasedTable<>(new LinkedHashMap<R, Map<C, V>>(), new Factory<C, V>(0)); } /** * Creates an empty {@code HashBasedTable} with the specified map sizes. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileFilterTest.java
@MethodSource("nameCases") @DisplayName("accept: name-based filter handles normal, empty, and null names") void accept_nameBasedFilter_handlesEdgeNames(String name, boolean expected) throws Exception { // Arrange: filter that accepts non-empty names ending with .txt SmbFileFilter filter = f -> { String n = f.getName();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/HashBasedTable.java
@GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** Creates an empty {@code HashBasedTable}. */ public static <R, C, V> HashBasedTable<R, C, V> create() { return new HashBasedTable<>(new LinkedHashMap<R, Map<C, V>>(), new Factory<C, V>(0)); } /** * Creates an empty {@code HashBasedTable} with the specified map sizes. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
// assertFalse(indexUpdater.isAlive()); } // Test run with max empty list count exceeded public void test_run_maxEmptyListCountExceeded() throws Exception { final List<String> sessionIdList = Arrays.asList("session1"); indexUpdater.setSessionIdList(sessionIdList); // Set max empty list count to 1 ((TestFessConfig) fessConfig).setMaxEmptyListCount(1);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
queryContext = new QueryContext(null, false); assertEquals("*", queryContext.getQueryString()); assertNull(queryContext.getDefaultField()); } // Test constructor with empty query string public void test_constructor_emptyQueryString() { queryContext = new QueryContext("", false); assertEquals("*", queryContext.getQueryString()); assertNull(queryContext.getDefaultField());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0)