- Sort Score
- Num 10 results
- Language All
Results 411 - 420 of 1,692 for republic (0.48 seconds)
-
src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java
return new ChatPhaseCallback() { @Override public void onPhaseStart(final String phase, final String message) { // no-op } @Override public void onPhaseComplete(final String phase) { // no-op } @Override public void onChunk(final String content, final boolean done) { // no-op
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:32:04 GMT 2026 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
* * <p>It extends AbstractFessFileTransformer to provide specialized file processing * capabilities using the appropriate extractor for each file type.</p> */ public class FessFileTransformer extends AbstractFessFileTransformer { /** * Default constructor. */ public FessFileTransformer() { super(); } /** Logger instance for this class */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 3.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
} @Test public void test_init() { try { keyMatchHelper.init(); } catch (Exception e) { // Expected due to missing dependencies in test environment assertNotNull(e); } } @Test public void test_getQueryMap_exists() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java
public ColumnInfo columnCreatedTime() { return _columnCreatedTime; } public ColumnInfo columnDepth() { return _columnDepth; } public ColumnInfo columnDescription() { return _columnDescription; } public ColumnInfo columnExcludedDocPaths() { return _columnExcludedDocPaths; } public ColumnInfo columnExcludedPaths() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 18K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
assertTrue(true); } } @Test public void test_setMonitorInterval() { jobHelper.setMonitorInterval(3600); assertEquals(3600, jobHelper.monitorInterval); jobHelper.setMonitorInterval(1800); assertEquals(1800, jobHelper.monitorInterval); } @Test public void test_getJobRuntime_null() { assertNull(jobHelper.getJobRuntime()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/RelevanceEvaluationResultTest.java
import java.util.Arrays; import java.util.Collections; import java.util.List; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class RelevanceEvaluationResultTest extends UnitFessTestCase { @Test public void test_withRelevantDocs() { List<String> docIds = Arrays.asList("doc1", "doc2", "doc3"); List<Integer> indexes = Arrays.asList(1, 2, 3);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 01 08:11:18 GMT 2026 - 7.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
/** The ID of the key match. */ public String id; /** The term of the key match. */ public String term; /** The query of the key match. */ public String query; /** The max size of the key match. */ public String maxSize; /** The boost of the key match. */ public String boost; /** The creator of the key match. */ public String createdBy;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
public String getIndexFieldId() { return "id"; } @Override public String getIndexFieldDocId() { return "doc_id"; } @Override public String getIndexFieldLabel() { return "label"; } @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebAuthenticationBhv.java
@Override public String asTableDbName() { return asEsIndexType(); } @Override protected String asEsIndex() { return "fess_config.web_authentication"; } @Override public String asEsIndexType() { return "web_authentication"; } @Override public String asEsSearchType() { return "web_authentication";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 10.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
*/ package org.codelibs.fess.exception; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class FessSystemExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withMessage() { // Test constructor with message only String message = "Test exception message";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)