Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 137 for engine2 (0.04 sec)

  1. src/main/java/org/codelibs/fess/script/AbstractScriptEngine.java

        public AbstractScriptEngine() {
            // nothing
        }
    
        /**
         * Register this script engine.
         */
        public void register() {
            ComponentUtil.getScriptEngineFactory().add(getName(), this);
        }
    
        /**
         * Get the name of this script engine.
         * @return The name of this script engine.
         */
        protected abstract String getName();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. okhttp/build.gradle.kts

            implementation(libs.junit.jupiter.params)
            implementation(libs.kotlin.test.junit)
            implementation(libs.openjsse)
    
            implementation(libs.junit.jupiter.engine)
            implementation(libs.junit.vintage.engine)
    
            if (platform == "conscrypt") {
              implementation(rootProject.libs.conscrypt.openjdk)
            } else if (platform == "openjsse") {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 03:59:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         * The template is evaluated using the specified script engine with the value and context.
         *
         * @param dataMap the data map to modify
         * @param key the key to store the processed value under
         * @param value the original value to process
         * @param template the template script to evaluate
         * @param scriptType the type of script engine to use
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  5. src/main/resources/lasta_di.properties

    smart.deploy.mode.location = fess_env.properties: lasta_di.smart.deploy.mode
    
    # package for smart deploy target e.g. org.docksidestage.app
    smart.package1 = org.codelibs.fess.app
    
    # script engine
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Apr 05 21:04:36 UTC 2019
    - 457 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        /** Flag indicating whether the results are partial due to timeout or other issues. */
        protected boolean partialResults;
    
        /** The actual search query executed against the search engine. */
        protected String searchQuery;
    
        /** Time taken to execute the search query in milliseconds. */
        protected long queryTime;
    
        /** Timestamp when the search request was made. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dashboard/AdminDashboardAction.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.dashboard;
    
    import org.codelibs.fess.annotation.Secured;
    import org.codelibs.fess.api.engine.SearchEngineApiManager;
    import org.codelibs.fess.app.web.base.FessAdminAction;
    import org.codelibs.fess.util.RenderDataUtil;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java

     */
    package org.codelibs.fess.opensearch.client;
    
    import org.codelibs.fess.exception.FessSystemException;
    
    /**
     * Exception thrown when search engine client operations fail.
     * This exception wraps underlying search engine errors and provides
     * meaningful error messages for troubleshooting.
     */
    public class SearchEngineClientException extends FessSystemException {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/Constants.java

        // Search Engine Type Constants
        // ============================================================
    
        /** Cloud-based search engine type. */
        public static final String FESEN_TYPE_CLOUD = "cloud";
    
        /** AWS-based search engine type. */
        public static final String FESEN_TYPE_AWS = "aws";
    
        /** Search engine username configuration key. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top