- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for products (0.62 sec)
-
README.md
*[Fess Site Search](https://github.com/codelibs/fess-site-search)* is a free alternative to [Google Site Search](https://enterprise.google.com/search/products/gss.html). For more details, see the [FSS JS Generator documentation](https://fss-generator.codelibs.org/docs/manual). ## Website [fess.codelibs.org](https://fess.codelibs.org/) ## Issues/Questions
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/main/java/org/codelibs/fess/suggest/request/Request.java
import org.opensearch.core.common.Strings; import org.opensearch.transport.client.Client; /** * Abstract class representing a request that can be executed to produce a response. * * @param <T> the type of response produced by this request */ public abstract class Request<T extends Response> { /** * Constructs a new request. */ public Request() { // nothing }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 11:21:40 UTC 2025 - 2.3K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
# For most projects, this workflow file will not need changing; you simply need # to commit it to your repository. # # You may wish to alter this file to override the set of languages analyzed, # or to provide custom queries or build logic. name: "CodeQL" on: push: branches: [master] pull_request: # The branches below must be a subset of the branches above branches: [master] schedule: - cron: '0 11 * * 4' jobs:
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/misc/Base64UtilTest.java
* * @throws Exception */ public void testBackwardCompatibility() throws Exception { // These test cases ensure that the new java.util.Base64 implementation // produces the same output as the old custom implementation // Test case 1: Standard padding final byte[] data1 = "abc".getBytes(); assertEquals("YWJj", Base64Util.encode(data1));Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
* * @return The minor version number. */ public int getMinorVersion() { return minorVersion; } /** * Gets the product version string. * * @return The product version string. */ public String getProductVersion() { return productVersion; } /** * Sets the interval for checking the system CPU load.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
final ExtractData result = zipExtractor.getText(in, null); assertNotNull(result); assertNotNull(result.getContent()); assertTrue("Empty archive should produce empty content", result.getContent().trim().isEmpty()); } /** * Test that empty TAR archive is handled gracefully. */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 12.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TextExtractorEnhancedTest.java
final ExtractData result = textExtractor.getText(in, null); assertNotNull(result); assertNotNull(result.getContent()); assertTrue("Empty input should produce empty content", result.getContent().isEmpty()); } /** * Test extraction with large text content. */ public void test_getText_largeContent_extractsSuccessfully() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/resources/fess_label_pt_BR.properties
labels.facet_is_not_found=Não encontrado labels.doc_score=Pontuação: labels.development_mode_warning=Executando em modo de desenvolvimento. Instale o OpenSearch separadamente em um ambiente de produção. labels.eol_error=Seu sistema não é mais compatível. Consulte a página de fim de vida do produto para atualizar. labels.tooltip_search_view=Visualização de pesquisa labels.tooltip_run_crawler=Executar rastreador labels.tooltip_forum=Fórum
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 48.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
assertNotNull(id); assertTrue(id.length() <= 445); } @Test public void testCreateSuggestTextIdConsistency() { // Test that same input always produces same output String text = "consistency test"; String id1 = SuggestUtil.createSuggestTextId(text); String id2 = SuggestUtil.createSuggestTextId(text); assertEquals(id1, id2); }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
/** * Performs concurrent searches using multiple searchers and fuses the results. * Executes searches in parallel across all provided searchers, then combines the results * using rank fusion algorithms to produce a unified result set. * * @param searchers array of searchers to use for concurrent searching * @param query the search query stringRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 27.5K bytes - Viewed (0)