Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 271 for perform (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

        public OptionalEntity<RequestHeader> getRequestHeader(final String id) {
            return requestHeaderBhv.selectByPK(id);
        }
    
        /**
         * Stores a request header configuration to the database.
         * This method performs either insert or update based on whether the request header already exists.
         *
         * @param requestHeader the request header configuration to store
         */
        public void store(final RequestHeader requestHeader) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Chars.java

        for (int i = fromIndex, j = toIndex - 1; i < j; i++, j--) {
          char tmp = array[i];
          array[i] = array[j];
          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Shorts.java

        for (int i = fromIndex, j = toIndex - 1; i < j; i++, j--) {
          short tmp = array[i];
          array[i] = array[j];
          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Shorts.java

        for (int i = fromIndex, j = toIndex - 1; i < j; i++, j--) {
          short tmp = array[i];
          array[i] = array[j];
          array[j] = tmp;
        }
      }
    
      /**
       * Performs a right rotation of {@code array} of "distance" places, so that the first element is
       * moved to index "distance", and the element at index {@code i} ends up at index {@code (distance
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java

         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of related queries based on the provided pager parameters.
         * This method performs a database query with pagination and updates the pager with result information.
         *
         * @param relatedQueryPager the pager containing pagination parameters and search conditions
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java

            });
            return asHtml(path_AdminDuplicatehost_AdminDuplicatehostJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Performs search for duplicate hosts based on form criteria.
         *
         * @param form the search form containing search criteria
         * @return HTML response for the duplicate host list page with search results
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.26.md

    - Kubeadm: removed the usage of the `--container-runtime=remote` flag for the...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java

            }
        }
    
        // Test parameter validation without relying on complex configuration
        public void test_validateParameters_basic() {
            // Test that parameter validation can be performed
            final CustomSize validAnnotation = createBasicAnnotation();
    
            try {
                validator.initialize(validAnnotation);
                assertTrue("Valid annotation should initialize successfully", true);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

            return super.hookBefore(runtime);
        }
    
        /**
         * Hook method called after action execution completes.
         * <p>
         * This method performs cleanup operations by calling the parent hook.
         * </p>
         *
         * @param runtime the action runtime context
         */
        @Override
        public void hookFinally(final ActionRuntime runtime) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

       *
       * <p>If a character has no mapped replacement then it is checked against the safe range. If it
       * lies outside that, then {@link #escapeUnsafe} is called, otherwise no escaping is performed.
       *
       * @param replacementMap a map of characters to their escaped representations
       * @param safeMin the lowest character value in the safe range
       * @param safeMax the highest character value in the safe range
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top