Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 134 for engine1 (0.03 sec)

  1. build.gradle.kts

        dependencies {
          // https://junit.org/junit5/docs/current/user-guide/#running-tests-build-gradle-bom
          testRuntimeOnly(rootProject.libs.junit.jupiter.engine)
          testRuntimeOnly(rootProject.libs.junit.vintage.engine)
          testRuntimeOnly(rootProject.libs.junit.platform.launcher)
        }
      }
    
      tasks.withType<Test> {
        useJUnitPlatform()
        jvmArgs(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         */
        public static DataService<OpenSearchAccessResult> getDataService() {
            return getComponent(DATA_SERVICE);
        }
    
        /**
         * Gets the search engine client component.
         * @return The search engine client.
         */
        public static SearchEngineClient getSearchEngineClient() {
            return getComponent(SEARCH_ENGINE_CLIENT);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  3. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappedRange.kt

          get() =
            when (type) {
              TYPE_IGNORED -> 119
              TYPE_VALID -> 120
              TYPE_DISALLOWED -> 121
              else -> error("unexpected type: $type")
            }
      }
    
      data class Inline1(
        override val rangeStart: Int,
        private val mappedTo: ByteString,
      ) : MappedRange {
        val b1: Int
          get() {
            val b3bit8 = mappedTo[0] and 0x80 != 0
            return if (b3bit8) 123 else 122
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

    import jakarta.annotation.Resource;
    
    /**
     * API action for admin Kuromoji dictionary management.
     * Provides REST endpoints for managing Kuromoji dictionary items in the Fess search engine.
     */
    public class ApiAdminDictKuromojiAction extends FessApiAdminAction {
    
        /**
         * Default constructor.
         */
        public ApiAdminDictKuromojiAction() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  5. docs/works_with_okhttp.md

     * [Glide](https://github.com/bumptech/glide): An image loading and caching library for Android focused on smooth scrolling.
     * [GoogleAppEngineOkHttp](https://github.com/apkelly/GoogleAppEngineOkHttp): An OkHttp Call that works on Google App Engine.
     * [Hunter](https://github.com/Leaking/Hunter): Configure all OkHttpClients centrally.
     * ⬜️ [Moshi](https://github.com/square/moshi): A modern JSON library for Android and Java.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 15 16:18:51 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java

    import jakarta.annotation.Resource;
    
    /**
     * API action for admin general settings management.
     * Provides RESTful API endpoints for managing general system configuration settings in the Fess search engine.
     * General settings include system-wide parameters, LDAP configuration, and core application settings.
     *
     */
    public class ApiAdminGeneralAction extends FessApiAdminAction {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Standard transformer implementation for the Fess search engine.
     * This transformer handles document transformation and content extraction using
     * the standard Fess file transformation process with support for various content types.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

         */
        @Required
        public String target;
    
        /**
         * The type of script that was executed for this job.
         * This is a required field indicating the script engine or type used.
         */
        @Required
        public String scriptType;
    
        /**
         * The script data or code that was executed.
         * This field contains the actual script content that was run.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SearchHelper.java

     * - Scroll search for large result sets
     * - Document retrieval by ID
     * - Bulk document updates
     * - Search parameter serialization/deserialization for cookies
     * - Integration with search engines and logging systems
     */
    public class SearchHelper {
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java

        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml(this::saveToken);
        }
    
        /**
         * Processes uploaded search request files and executes them against the search engine.
         *
         * @param form the upload form containing the request file
         * @return action response with the search results or error page
         */
        @Execute
        @Secured({ ROLE })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top