- Sort Score
- Num 10 results
- Language All
Results 691 - 700 of 1,080 for nell (0.07 seconds)
-
.github/ISSUE_TEMPLATE/10_contributor_bug_report.yml
- type: textarea id: current-behavior attributes: label: Current Behavior description: Tell us what happens validations: required: true - type: textarea id: expected-behavior attributes: label: Expected Behavior description: Tell us what should happen validations: required: true - type: textarea id: context attributes:Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Sep 09 14:48:49 GMT 2024 - 3K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); return null; })).status(Status.OK).result()); } // POST /api/admin/duplicatehost/setting /** * Creates a new duplicate host setting. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
existPrePage = false; existNextPage = false; pageSize = getDefaultPageSize(); currentPageNumber = getDefaultCurrentPageNumber(); id = null; name = null; versionNo = null; } /** * Returns the default current page number for pagination. * * @return the default current page number (typically 1) */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsFavoriteLog.java
if (createdAt != null) { addFieldToSource(sourceMap, "createdAt", createdAt); } if (docId != null) { addFieldToSource(sourceMap, "docId", docId); } if (queryId != null) { addFieldToSource(sourceMap, "queryId", queryId); } if (url != null) { addFieldToSource(sourceMap, "url", url); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 5.7K bytes - Click Count (0) -
src/packaging/common/scripts/postinst
elif command -v chkconfig >/dev/null; then echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using chkconfig" echo " sudo chkconfig --add fess" echo "### You can start fess service by executing" echo " sudo service fess start" elif command -v update-rc.d >/dev/null; thenCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 10 01:24:02 GMT 2015 - 3.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LogNotificationHelperTest.java
helper.destroy(); } @Test public void test_destroy_beforeInit() { LogNotificationHelper helper = new LogNotificationHelper(); // destroy() without init() should not throw NPE because of null checks helper.destroy(); } @Test public void test_init_destroy_multipleRounds() { LogNotificationHelper helper = new LogNotificationHelper(); helper.init();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 6.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
* @param entryDn the LDAP entry DN * @return the extracted role name, or null if not found */ protected String getSearchRoleName(final String entryDn) { if (entryDn == null) { return null; } int start = entryDn.toLowerCase(Locale.ROOT).indexOf("cn="); if (start == -1) { return null; } start += 3;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 08:06:20 GMT 2026 - 85.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java
assertEquals("", result.getQuery()); } @Test public void test_search_withNullQuery() { final IntentDetectionResult result = IntentDetectionResult.search(null, "test"); assertEquals(ChatIntent.SEARCH, result.getIntent()); assertNull(result.getQuery()); } @Test public void test_search_withSimpleQuery() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 8.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
assertNull(exception.getCause()); } @Test public void test_constructor_withNullMessage() { // Test with null message UnsupportedSearchException exception = new UnsupportedSearchException(null); assertNull(exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructor_withLongMessage() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 8.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
* @throws SAXException if XML parsing fails * @throws IOException if I/O error occurs */ protected String getSnapshotActualVersion(final DocumentBuilder builder, final String pluginUrl, final String version) throws SAXException, IOException { String timestamp = null; String buildNumber = null;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0)