- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 132 for paging (0.03 seconds)
-
src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java
* limitations under the License. */ import java.util.ArrayList; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Utility class for parsing CSV text */ public final class KuromojiCSVUtil { private static final char QUOTE = '"'; private static final char COMMA = ',';Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 3.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
serialVersionField.setAccessible(true); assertEquals(1L, serialVersionField.getLong(null)); } /** * Test that all label constants follow the naming convention */ @Test public void test_labelConstantsNamingConvention() throws Exception { Field[] fields = FessLabels.class.getDeclaredFields();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K 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/main/java/org/codelibs/fess/helper/MarkdownRenderer.java
import org.owasp.html.HtmlPolicyBuilder; import org.owasp.html.PolicyFactory; /** * Renders markdown to sanitized HTML for safe display in the chat interface. * Uses commonmark for markdown parsing and OWASP HTML Sanitizer for XSS prevention. */ public class MarkdownRenderer { private static final Logger logger = LogManager.getLogger(MarkdownRenderer.class); private Parser markdownParser;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 12 10:32:40 GMT 2026 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java
public class SearchQueryExceptionTest extends UnitFessTestCase { @Test public void test_constructorWithMessageAndCause() { // Test constructor with message and cause String message = "Query parsing failed"; Exception cause = new IllegalArgumentException("Invalid query syntax"); SearchQueryException exception = new SearchQueryException(message, cause);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
// Test argument parsing instead SuggestCreator.Options options = new SuggestCreator.Options(); assertNotNull(options); } // Test main method with valid arguments @Test public void test_main_validArguments() { // Cannot directly test main as it calls System.exit // Test options parsing insteadCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0) -
LICENSE
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanicalCreated: Wed Apr 01 00:11:11 GMT 2026 - Last Modified: Thu Feb 20 19:53:57 GMT 2020 - 11.1K bytes - Click Count (0) -
src/main/webapp/js/admin/jquery-3.7.1.min.js
totype={constructor:at,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||ce.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(ce.cssNumber[n]?"":"px")},cur:function(){var e=at.propHooks[this.prop];return e&&e.get?e.get(this):at.propHooks._default.get(this)},run:function(e){var t,n=at.propHooks[this.prop];return this.options.duration?this.pos=t=ce.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(th...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:07:52 GMT 2024 - 85.5K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
assertTrue(pattern.contains("key")); assertTrue(pattern.contains("token")); assertTrue(pattern.contains("secret")); } // Test array field parsing @Test public void test_arrayFieldParsing() { // Test parsing of comma-separated values String[] arrayFields = fessConfig.getIndexAdminArrayFields().split(","); assertNotNull(arrayFields);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
import org.codelibs.fess.dict.DictionaryFile; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalEntity; /** * Manages a dictionary file for stopwords. * This class handles reading, parsing, and updating files that contain * a list of stopwords. Each line in the file represents a single stopword. * * The class provides methods for retrieving, adding, updating, and
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 13K bytes - Click Count (0)