- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 20 for easing (0.04 seconds)
-
src/test/java/org/codelibs/fess/helper/CrawlerLogHelperTest.java
assertNotNull(crawlerLogHelper); } @Test public void test_log_method_exists() { // Test that the log method exists and can be called // We can't easily test the actual functionality without complex mocking // but we can verify the class structure assertNotNull(crawlerLogHelper);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/ChatIntent.java
*/ public enum ChatIntent { /** User wants to search for documents in Fess */ SEARCH("search"), /** User wants a summary of a specific document */ SUMMARY("summary"), /** User is asking a FAQ-type question */ FAQ("faq"), /** Intent is unclear - need to ask user for clarification */ UNCLEAR("unclear"); private final String value; ChatIntent(final String value) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/IndexExportFormatter.java
*/ public interface IndexExportFormatter { /** * Returns the file extension for this format (e.g. ".html", ".json"). * * @return the file extension including the leading dot */ String getFileExtension(); /** * Returns the default index file name for this format (e.g. "index.html", "index.json"). * * @return the index file name */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 07 10:31:36 GMT 2026 - 1.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/PingResponseTest.java
ComponentUtil.register(originalConfig, "fessConfig"); } super.tearDown(testInfo); } @Test public void test_getStatus_returnsCorrectValue() { // Since we cannot easily create a real ClusterHealthResponse without a running cluster, // we'll test the class behavior through unit tests that verify the logic // The actual integration with ClusterHealthResponse is tested in integration tests
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 7.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClient.java
* * In addition to low-level chat operations, this interface defines * high-level RAG workflow methods that allow each provider to optimize * prompt construction, parameter tuning, and response parsing. */ public interface LlmClient { /** * Performs a chat completion request. * * @param request the chat request containing messages and parameters * @return the chat response from the LLMCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 7.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java
SpnegoAuthenticator authenticator = new SpnegoAuthenticator(); assertNotNull(authenticator); // The constant should be accessible and properly named // We can't easily test the actual configuration without full DI setup, // but we verify the class structure is correct assertTrue(true); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
// Test script generation with multiple labels @Test public void test_execute_scriptGenerationWithMultipleLabels() { // This test verifies that the job executes correctly // Note: We can't easily test the actual script generation because the mock doesn't call the processor String result = updateLabelJob.execute(); assertNotNull(result);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.6K bytes - Click Count (0) -
README.md
 ## Overview Fess is a very powerful and easily deployable Enterprise Search Server. You can quickly install and run Fess on any platform where you can run the Java Runtime Environment. Fess is provided under the [Apache License 2.0](LICENSE).
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 14 03:19:23 GMT 2026 - 7.8K bytes - Click Count (2) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
context.addHighlightedQuery(text); return QueryBuilders.wildcardQuery(urlField, queryString).boost(boost); } /** * Converts a term query ending with asterisk to a prefix query. * * @param fessConfig the Fess configuration * @param context the query context * @param termQuery the term query to convert
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 13.6K bytes - Click Count (0)