Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for engine1 (0.09 sec)

  1. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

        }
    
        // Test add multiple engines
        public void test_add_multipleEngines() {
            TestScriptEngine engine1 = new TestScriptEngine("engine1");
            TestScriptEngine engine2 = new TestScriptEngine("engine2");
            CustomScriptEngine customEngine = new CustomScriptEngine();
    
            scriptEngineFactory.add("engine1", engine1);
            scriptEngineFactory.add("engine2", engine2);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            // Execute with second engine
            Object result2 = scriptExecutor.execute("type2", "script for engine2");
            assertEquals("engine2:processed: script for engine2", result2);
    
            // Verify correct engine was called each time
            assertEquals("script for engine1", engine1.getLastScript());
            assertEquals("script for engine2", engine2.getLastScript());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java

        }
    
        // Test register method with multiple engines
        public void test_register_multipleEngines() {
            TestScriptEngine engine1 = new TestScriptEngine("engine1");
            TestScriptEngine engine2 = new TestScriptEngine("engine2");
    
            engine1.register();
            engine2.register();
    
            // Verify both engines are registered
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Helper class for indexing operations in the Fess search engine.
     * This class provides functionality for sending documents to the search engine,
     * managing document lifecycle operations (create, update, delete), and handling
     * thumbnail processing during indexing.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  5. gradle/libs.versions.toml

    junit = "junit:junit:4.13.2"
    junit-ktx = "androidx.test.ext:junit-ktx:1.3.0"
    junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "org-junit-jupiter" }
    junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "org-junit-jupiter" }
    junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "org-junit-jupiter" }
    #noinspection UnusedVersionCatalogEntry
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 31 17:41:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

    import jakarta.servlet.ServletOutputStream;
    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * API manager for search engine administrative operations.
     * Provides secure access to search engine APIs through authentication and token-based authorization.
     */
    public class SearchEngineApiManager extends BaseApiManager {
        private static final String ADMIN_SERVER = "/admin/server_";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        }
    
        /**
         * Sets the name of the search engine cluster.
         *
         * @param clusterName the cluster name
         */
        public void setClusterName(final String clusterName) {
            this.clusterName = clusterName;
        }
    
        /**
         * Gets information about the search engine.
         *
         * @return the engine information
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            }
            return childUrlSet;
        }
    
        /**
         * Retrieves child URLs for a given document ID from the search engine index.
         * This method queries the search engine for child documents and extracts their URLs.
         *
         * @param searchEngineClient the search engine client to query
         * @param id the parent document ID to find children for
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java

    import org.lastaflute.web.response.JsonResponse;
    
    import jakarta.annotation.Resource;
    
    /**
     * API action for admin dictionary management.
     * Provides REST endpoints for managing dictionaries in the Fess search engine.
     */
    public class ApiAdminDictAction extends FessApiAdminAction {
    
        /**
         * Default constructor.
         */
        public ApiAdminDictAction() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            return generateId(urlId);
        }
    
        /**
         * Retrieves a list of session IDs with their document counts from the search engine.
         * Uses aggregation to get session segments and their corresponding document counts.
         *
         * @param searchEngineClient the search engine client to perform the query
         * @return a list of maps containing session IDs and their document counts
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
Back to top