- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 19 for sendo (0.02 seconds)
-
src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java
} catch (final IOException ioe) { logger.warn("Failed to send error response. error={}", ioe.getMessage()); } } } } /** * Sends a Server-Sent Event (SSE) to the client. * * @param writer the print writer to write the event to * @param event the event name
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 06:06:55 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
/** * Get the value for the key 'mail.send.mock'. <br> * The value is, e.g. true <br> * comment: Does it send mock mail? (true: no send actually, logging only) * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getMailSendMock(); /** * Is the property for the key 'mail.send.mock' true? <br> * The value is, e.g. true <br>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
/** * Periodic poll that sends a heartbeat, processes new events, and cleans up expired documents. */ protected void poll() { try { sendHeartbeat(); } catch (final Exception e) { logger.debug("Failed to send heartbeat in poll.", e); } try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
this.streamCloseTimeout = streamCloseTimeout; } /** * Sends a command to the process associated with the given session ID. * Uses finer-grained locking to avoid blocking other operations during I/O. * * @param sessionId unique identifier for the process session * @param command the command to send to the process * @throws JobNotFoundException if no process is found for the given session IDCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 06:54:47 GMT 2025 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
setup.setup(form -> { updateForm(fessConfig, form); }); }); } /** * Sends a test mail using the provided notification settings. * * @param form the mail form containing notification settings * @return HTML response after sending test mail */ @Execute
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 05:54:31 GMT 2026 - 27.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
} }; FessConfig fessConfig = createTestFessConfig(); NotificationHelper notificationHelper = new NotificationHelper() { // Mock send method public void send(final Object postcard) { // Mock implementation } }; // Register components ComponentUtil.register(searchEngineClient, "searchEngineClient");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
systemHelper.getCurrentTimeAsLong() - execTime, MemoryUtil.byteCountToDisplaySize(docList.getContentSize()), MemoryUtil.getMemoryUsageLog()); } else {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java
discloser.setPlainText("Test Content"); // Should call both sendToSlack and sendToGoogleChat try { notificationHelper.send(null, discloser); } catch (Exception e) { fail("send() should not throw an exception: " + e.getMessage()); } } @Test public void test_toSlackMessage_withOnlySubject() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 20K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
if (aggregations != null) { builder.facetResponse(new FacetResponse(aggregations)); } }); return builder.build(); } /** * Sends a search request to OpenSearch with the specified parameters. * * @param query the search query string * @param params the search request parameters
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 09:24:04 GMT 2025 - 12.6K bytes - Click Count (0)