- Sort Score
- Num 10 results
- Language All
Results 1 - 9 of 9 for sendiri (0.03 seconds)
-
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
final SearchRequestParams params, final OptionalThing<FessUserBean> userBean) { if (logger.isDebugEnabled()) { logger.debug("Sending query to searchers: query={}", query); } final int pageSize = params.getPageSize(); final int startPosition = params.getStartPosition(); if (startPosition * 2 >= windowSize) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 25 02:13:14 GMT 2025 - 28K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
* @param command the command to send to the process * @throws JobNotFoundException if no process is found for the given session ID * @throws JobProcessingException if there's an error sending the command */ public void sendCommand(final String sessionId, final String command) { final Process process; synchronized (this) {Created: 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/helper/IndexingHelper.java
import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Helper class for indexing operations in the Fess search engine. * This class provides functionality for sending documents to the search engine, * managing document lifecycle operations (create, update, delete), and handling * thumbnail processing during indexing. *
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/main/java/org/codelibs/fess/entity/ChatMessage.java
public static final String ROLE_ASSISTANT = "assistant"; /** The unique identifier for this message. */ private String id; /** The role of the message sender (user or assistant). */ private String role; /** The content of the message. */ private String content; /** The timestamp when the message was created. */ private LocalDateTime timestamp;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
// Execute String result = pingSearchEngineJob.execute(); // Assert assertEquals("Status of test-cluster is changed to RED.", result); // Note: Notification sending is tested but we don't verify the mock since it uses complex callback mechanism } // Test state change with empty notification addresses @TestCreated: 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/app/web/admin/general/AdminGeneralAction.java
}); } /** * 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 @Secured({ ROLE }) public HtmlResponse sendmail(final MailForm form) { validate(form, messages -> {}, () -> asHtml(path_AdminGeneral_AdminGeneralJsp));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) -
MIGRATION.md
For applications still sending queries to GSA endpoints, Fess provides a configuration option: **Enable GSA API** Add to `system.properties`: ```properties web.api.gsa=true ```
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 12:40:11 GMT 2025 - 23.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
/** * Default constructor. */ public CoordinatorHelper() { // Default constructor } /** * Initializes the coordinator by sending an initial heartbeat and starting the poll loop. */ @PostConstruct public void init() { instanceId = ComponentUtil.getSystemHelper().getInstanceId();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/webapp/js/chat.js
} /** * Bind event handlers */ function bindEvents() { elements.sendBtn.on('click', sendMessage); elements.chatInput.on('keydown', function(e) { // Prevent sending during IME composition (Japanese, Chinese, etc.) if (e.key === 'Enter' && !e.shiftKey && !e.isComposing) { e.preventDefault(); sendMessage(); } });Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 30.6K bytes - Click Count (0)