Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for engine1 (0.15 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/script/ScriptEngine.java

    /**
     * Interface for script engines that can evaluate templates with parameters.
     * This interface provides a contract for different script engine implementations
     * to process template strings with parameter substitution.
     */
    public interface ScriptEngine {
    
        /**
         * Evaluates a template string with the provided parameter map.
         * The template is processed using the script engine's templating mechanism,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/script/ScriptEngineFactory.java

        /**
         * Adds a script engine.
         * @param name The name of the script engine.
         * @param scriptEngine The script engine.
         */
        public void add(final String name, final ScriptEngine scriptEngine) {
            if (name == null || scriptEngine == null) {
                throw new IllegalArgumentException("name or scriptEngine is null.");
            }
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. regression-test/src/androidTest/java/okhttp/regression/compare/AndroidHttpEngineTest.kt

          .addQuicHint("www.google.com", 443, 443)
          .build()
    
      @After
      fun tearDown() {
        engine.shutdown()
        cacheDir.deleteRecursively()
      }
    
      @Test
      fun get() {
        val executor = Executors.newCachedThreadPool()
    
        val completableFuture = execute(engine, executor, "https://google.com/robots.txt")
    
        try {
          val response = completableFuture.get(10, TimeUnit.SECONDS)
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/InsecureExtendedTrustManager.kt

        }
      }
    
      override fun checkServerTrusted(
        chain: Array<out X509Certificate>,
        authType: String,
        engine: SSLEngine,
      ) {
        if (engine.peerHost !in insecureHosts) {
          delegate.checkServerTrusted(chain, authType, engine)
        }
      }
    
      override fun checkServerTrusted(
        chain: Array<out X509Certificate>,
        authType: String,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/SystemUtil.java

        /**
         * Private constructor to prevent instantiation.
         */
        private SystemUtil() {
        }
    
        /**
         * Gets the HTTP address of the search engine.
         *
         * @return The search engine HTTP address.
         */
        public static String getSearchEngineHttpAddress() {
            return System.getProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top