Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 421 for Settings (0.25 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

    import jakarta.validation.constraints.Max;
    import jakarta.validation.constraints.Min;
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing general system settings in the admin interface.
     * This form handles global configuration settings that affect the entire Fess system,
     * including crawling behavior, authentication, logging, and various system parameters.
     *
     */
    public class EditForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java

        /**
         * Retrieves key match settings with pagination.
         *
         * @param body the search parameters for filtering and pagination
         * @return JSON response containing key match settings list
         */
        // GET /api/admin/keymatch/settings
        // PUT /api/admin/keymatch/settings
        @Execute
        public JsonResponse<ApiResult> settings(final SearchBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/CrudTestBase.java

            // Test: update settings api
            final Set<String> keySet = createTestParam(0).keySet();
            final Map<String, Object> updateMap = getUpdateMap();
            final Map<String, Object> searchBody = createSearchBody(SEARCH_ALL_NUM);
            List<Map<String, Object>> settings = getItemList(searchBody);
    
            for (Map<String, Object> setting : settings) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/documentMap.dfprop

        #  You can set SchemaSyncCheck settings.
        #  This property is valid when the property 'user' is set.
        #  Elements of this map are as below:
        #   o url: The URL for connecting database. (NotRequired - Default same as databaseInfoMap)
        #   o schema: The schema name. (NotRequired - Default '' e.g. no setting when MySQL)
        #   o user: The database user name. (Required)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java

        /**
         * Retrieves label type settings with pagination.
         *
         * @param body the search parameters for filtering and pagination
         * @return JSON response containing label type settings list
         */
        // GET /api/admin/labeltype/settings
        // PUT /api/admin/labeltype/settings
        @Execute
        public JsonResponse<ApiResult> settings(final SearchBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java

        // POST /api/admin/group/setting
        /**
         * Creates a new group setting.
         *
         * @param body group setting data to create
         * @return JSON response with created setting ID and status
         */
        @Execute
        public JsonResponse<ApiResult> post$setting(final CreateBody body) {
            validateApi(body, messages -> {});
            validateAttributes(body.attributes, this::throwValidationErrorApi);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2Test.kt

          object : BaseTestHandler() {
            override fun settings(
              clearPrevious: Boolean,
              settings: Settings,
            ) {
              // No clearPrevious in HTTP/2.
              assertThat(clearPrevious).isFalse()
              assertThat(settings.headerTableSize).isEqualTo(reducedTableSizeBytes)
              assertThat(settings.getEnablePush(true)).isFalse()
            }
          },
        )
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 28.1K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/ConnectionPoolTest.kt

      }
    
      private fun updateMaxConcurrentStreams(
        connection: Http2Connection,
        amount: Int,
      ) {
        val settings = Settings()
        settings[Settings.MAX_CONCURRENT_STREAMS] = amount
        connection.readerRunnable.applyAndAckSettings(true, settings)
        assertThat(connection.peerSettings[Settings.MAX_CONCURRENT_STREAMS]).isEqualTo(amount)
        taskFaker.runTasks()
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

            .containsExactly(new File("/c:/Documents and Settings/"), classloader);
      }
    
      // https://github.com/google/guava/issues/2152
      public void testToFile() throws Exception {
        assertThat(ClassPath.toFile(new URL("file:///c:/Documents%20and%20Settings/")))
            .isEqualTo(new File("/c:/Documents and Settings/"));
        assertThat(ClassPath.toFile(new URL("file:///c:/Documents ~ Settings, or not/11-12 12:05")))
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 20:58:01 UTC 2025
    - 23K bytes
    - Viewed (0)
  10. dbflute_fess/dfprop/lastafluteMap.dfprop

        # keywords for environment properties, same as directory name
        ; environmentList = list:{}
    
        # environment dispatch by lasta.env of system property?
        ; isUseLastaEnv = false
    
        # settings for web applications
        ; appMap = map:{
            ; fess = map:{
                ; path = ..
                ; freeGenList = list:{ env ; config ; label ; message ; mail ; template ; jsp ; doc }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun May 20 08:20:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top