Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 134 for engine1 (0.08 sec)

  1. 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)
  2. 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)
  3. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            // Complex real-world-like data - quotes are preserved
            value = "\"John Doe\",\"Software Engineer\",\"******@****.***\",\"Loves \"\"coding\"\" and coffee\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(4, result.length);
            assertEquals("John Doe", result[0]);
            assertEquals("Software Engineer", result[1]);
            assertEquals("******@****.***", result[2]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

         * Constructs a new suggest creator.
         */
        public SuggestCreator() {
            // do nothing
        }
    
        private static final Logger logger = LogManager.getLogger(SuggestCreator.class);
    
        /** The search engine client for interacting with OpenSearch. */
        @Resource
        public SearchEngineClient searchEngineClient;
    
        /**
         * A nested class for parsing command-line options.
         */
        protected static class Options {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  10. docs/de/README.md

    ## Erste Schritte
    
    Es gibt zwei Möglichkeiten, Fess auszuprobieren. Die erste besteht darin, es selbst herunterzuladen und zu installieren. Die zweite besteht darin, [Docker](https://www.docker.com/products/docker-engine) zu verwenden.
    
    ### Herunterladen und Installieren/Ausführen
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top