- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 137 for engine2 (0.9 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
import org.lastaflute.web.response.StreamResponse; import jakarta.annotation.Resource; /** * API action for admin bad word management. * Provides REST endpoints for managing bad words in the Fess search engine. */ public class ApiAdminBadwordAction extends FessApiAdminAction { /** * Default constructor. */ public ApiAdminBadwordAction() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
} } } public void test_getSearchEngineHttpAddress_withSpecialCharacters() { String testAddress = "https://search-engine.example.com:9200/path?param=value&other=test"; String originalValue = System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
import jakarta.annotation.Resource; /** * API action for admin Synonym dictionary management. * Provides REST endpoints for managing synonym dictionary items in the Fess search engine. */ public class ApiAdminDictSynonymAction extends FessApiAdminAction { /** * Default constructor. */ public ApiAdminDictSynonymAction() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
import org.opensearch.monitor.os.OsProbe; import org.opensearch.monitor.process.ProcessProbe; import jakarta.annotation.Resource; /** * Main executable class for running crawling operations in the Fess search engine. * This class serves as the entry point for crawling web content, file systems, and data stores. * It manages the crawling lifecycle, including initialization, execution coordination, * monitoring, and cleanup operations. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/ConnectionReuseTest.kt
assertThat(server.takeRequest().exchangeIndex).isEqualTo(0) assertThat(server.takeRequest().exchangeIndex).isEqualTo(0) } /** * Regression test for an edge case where closing response body in the HTTP engine doesn't release * the corresponding stream allocation. This test keeps those response bodies alive and reads * them after the redirect has completed. This forces a connection to not be reused where it would
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 12.2K bytes - Viewed (0) -
docs/fr/README.md
## Démarrage rapide Il existe 2 manières d'essayer Fess. La première est de le télécharger et l'installer vous-même. La seconde est d'utiliser [Docker](https://www.docker.com/products/docker-engine). ### Télécharger et Installer/Exécuter
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/pt-BR/README.md
[discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/) ## Como Começar Existem duas maneiras de testar o Fess. A primeira é baixar e instalar você mesmo. A segunda é usar [Docker](https://www.docker.com/products/docker-engine). ### Baixar e Instalar/Executar O Fess 14.17 já está disponível e pode ser baixado na [página de lançamentos](https://github.com/codelibs/fess/releases "download"). As opções de download incluem: deb, rpm, zip.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
import jakarta.annotation.PostConstruct; import jakarta.annotation.PreDestroy; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; /** * RankFusionProcessor manages multiple search engines and combines their results using rank fusion algorithms. * This processor supports searching with multiple searchers concurrently and merging their results based on
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
protected long searchStoreInterval = 1; // min /** * Initializes the SuggestHelper. * This method sets up the suggester, configures field names, and initializes * the connection to the search engine. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
import org.codelibs.fess.util.JobProcess; import org.codelibs.fess.util.SystemUtil; import jakarta.servlet.ServletContext; /** * Job for executing Python scripts within the Fess search engine environment. * This job extends ExecJob to provide Python-specific functionality for running * Python scripts with proper environment setup and argument passing. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0)