- Sort Score
- Num 10 results
- Language All
Results 191 - 200 of 451 for EMPTY (0.2 seconds)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java
assertNotNull(creator1); assertNotNull(creator2); assertNotSame(creator1, creator2); } // Test with empty strings @Test public void test_emptyStrings() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java
String msg = "Cannot register null or empty query: name=" + name + " value=" + value; throw new InvalidQueryRegisteredException(msg); } } protected void checkEsInvalidQueryCollection(String name, Collection<?> values) { if (values == null || values.isEmpty()) { String msg = "Cannot register null or empty query collection: name=" + name + " values=" + values;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 21.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withEmptyMessage() { // Test constructor with empty message String message = ""; DictionaryException exception = new DictionaryException(message); assertNotNull(exception); assertEquals(message, exception.getMessage());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
* * @return the language instruction string, or empty string if locale is English */ protected String getLanguageInstruction() { final Locale locale = getUserLocale(); final String language = locale.getLanguage(); if ("en".equals(language)) { return StringUtil.EMPTY; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java
break; } return OptionalEntity.empty(); } /** * Creates a synonym item from the provided form data with validation. * * @param form the create form containing synonym data * @param hook the validation error hook for handling errors * @return OptionalEntity containing the created synonym item or empty if creation failed */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 23.7K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
} /** * Retrieves a specific group by its ID and applies LDAP manager settings. * * @param id the unique identifier of the group * @return an OptionalEntity containing the group if found, empty otherwise */ public OptionalEntity<Group> getGroup(final String id) { return groupBhv.selectByPK(id).map(g -> { ComponentUtil.getLdapManager().apply(g); return g; });Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
assertEquals("Exported 0 documents.", result); } // --- Edge cases --- @Test public void test_buildFilePath_emptyString() { // Empty string is a valid relative URI with null host and empty path final Path result = indexExportJob.buildFilePath("/export", "", new HtmlIndexExportFormatter()); assertEquals(Path.of("/export/_local/index.html"), result); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
/** * Helper class for managing HTTP requests using cURL-like operations. */ public class CurlHelper { /** * Default constructor. */ public CurlHelper() { // Empty constructor } private static final Logger logger = LogManager.getLogger(CurlHelper.class); private SSLSocketFactory sslSocketFactory; private NodeManager nodeManager; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 6.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
* * @param request the HTTP servlet request */ public void deleteUserCodeFromCookie(final HttpServletRequest request) { final String cookieValue = getUserCodeFromCookie(request); if (cookieValue != null) { updateCookie(StringUtil.EMPTY, 0); } } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 14.9K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/dict/synonym/admin_dict_synonym.jsp
</div> <%-- List --%> <c:if test="${synonymPager.allRecordCount == 0}"> <div class="row top10"><div class="col-sm-12 empty-list-placeholder"><i class="fa fa-info-circle text-primary" aria-hidden="true"></i> <la:message key="labels.list_could_not_find_crud_table"/> </div>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 10.2K bytes - Click Count (0)