- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 58 for showing (0.07 seconds)
-
src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java
String details = testableJob.testFormatDetails(events); assertNotNull(details); // Max 50 events displayed, message truncated to 200 chars assertTrue(details.contains("Total: 100 event(s) (showing 50)")); assertTrue(details.contains("... and 50 more")); // Long messages should be truncated with "..." assertTrue(details.contains("...")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/LogNotificationJob.java
final StringBuilder sb = new StringBuilder(); sb.append("Total: ").append(totalCount).append(" event(s)"); if (totalCount > displayCount) { sb.append(" (showing ").append(displayCount).append(')'); } sb.append("\n\n"); for (int i = 0; i < displayCount; i++) { final LogNotificationEvent event = events.get(i);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 9.4K bytes - Click Count (0) -
ADDING_NEW_LANGUAGE.md
- Check that locale code is in `supported.languages` in `fess_config.properties` - Regenerate Java classes: `mvn dbflute:freegen` - Rebuild project: `mvn clean package` - Restart Fess application ### Translations not showing - Clear browser cache - Force language with `?browser_lang=[locale]` parameter - Check property file encoding (should be UTF-8 or use Unicode escapes `\uXXXX`)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 11:36:30 GMT 2025 - 10.4K bytes - Click Count (1) -
src/main/resources/fess_label_en.properties
labels.menu_plugin=Plugin labels.menu_storage=Storage labels.sidebar.menu=Menu labels.footer.copyright=©2026 <a href="https://github.com/codelibs">CodeLibs Project</a>. labels.search=Search labels.similar_doc_result_status=Showing similar results. labels.search_result_status=Results <b>{2}</b> - <b>{3}</b> of <b>{1}</b> for <b>{0}</b> labels.search_result_status_over=Results <b>{2}</b> - <b>{3}</b> of over <b>{1}</b> for <b>{0}</b>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
src/main/resources/fess_label.properties
labels.menu_plugin=Plugin labels.menu_storage=Storage labels.sidebar.menu=Menu labels.footer.copyright=©2026 <a href="https://github.com/codelibs">CodeLibs Project</a>. labels.search=Search labels.similar_doc_result_status=Showing similar results. labels.search_result_status=Results <b>{2}</b> - <b>{3}</b> of <b>{1}</b> for <b>{0}</b> labels.search_result_status_over=Results <b>{2}</b> - <b>{3}</b> of over <b>{1}</b> for <b>{0}</b>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.36.md
- For performance reasons, `kubectl describe` now defaults to showing related events only when describing a single object. Passing `--show-events` explicitly when describing multiple objects or fuzzy matching on prefix will still show related events if desired. ([#137145](https://github.com/kubernetes/kubernetes/pull/137145),...
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Mar 19 23:38:00 GMT 2026 - 142.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Search */ public static final String LABELS_SEARCH = "{labels.search}"; /** The key of the message: Showing similar results. */ public static final String LABELS_similar_doc_result_status = "{labels.similar_doc_result_status}";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 172.6K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.34.md
- `scheduler_async_api_call_duration_seconds`: histogram of API call execution duration by call type and result - `scheduler_pending_async_api_calls`: gauge showing current number of pending API calls in the queue. ([#133120](https://github.com/kubernetes/kubernetes/pull/133120), [@utam0k](https://github.com/utam0k)) [SIG Release and Scheduling]Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Mar 19 03:19:43 GMT 2026 - 368.7K bytes - Click Count (2) -
CHANGELOG/CHANGELOG-1.31.md
- Fixed a bug where `kubectl describe` incorrectly displayed NetworkPolicy port ranges (showing only the starting port). ([#123316](https://github.com/kubernetes/kubernetes/pull/123316), [@jcaamano](https://github.com/jcaamano)) - Fixed a bug where hard evictions due to resource pressure allowed pods
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Wed Nov 12 11:33:21 GMT 2025 - 451.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
// Both instances should be of the same class assertEquals(exception1.getClass(), exception2.getClass()); } @Test public void test_throwAndCatch() { // Test throwing and catching the exception String expectedMessage = "Expected error"; try { throw new FessSystemException(expectedMessage); } catch (FessSystemException e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.6K bytes - Click Count (0)