Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 976 for m_param (0.05 sec)

  1. src/main/java/org/codelibs/core/exception/ClIllegalArgumentException.java

        }
    
        /**
         * Creates a {@link ClIllegalArgumentException}.
         *
         * @param argName
         *            Name of the argument
         * @param messageCode
         *            Message code
         * @param args
         *            Array of arguments
         * @param cause
         *            The cause of the exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/EmptyArgumentException.java

        }
    
        /**
         * Creates an {@link EmptyArgumentException}.
         *
         * @param argName
         *            Name of the argument
         * @param messageCode
         *            Message code
         * @param args
         *            Array of arguments
         * @param cause
         *            The cause of the exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

        List<CharMappingItem> mappingItemList;
    
        /**
         * Constructs a new CharMappingFile instance.
         *
         * @param id the unique identifier for this mapping file
         * @param path the file path to the character mapping dictionary
         * @param timestamp the last modification timestamp of the file
         */
        public CharMappingFile(final String id, final String path, final Date timestamp) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/collection/SLinkedList.java

        /**
         * Returns the element at the specified position.
         *
         * @param index the index
         * @return the element
         */
        public E get(final int index) {
            return getEntry(index).element;
        }
    
        /**
         * Sets the element at the specified position.
         *
         * @param index the index
         * @param element the element
         * @return the original element
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

         */
        public DefaultSearcher() {
            super();
        }
    
        /**
         * Performs a search operation using the specified query and parameters.
         *
         * @param query the search query string
         * @param params the search request parameters
         * @param userBean the optional user bean for access control
         * @return the search result containing documents and metadata
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

        /**
         * Appends a query string to the query buffer with proper formatting.
         * Handles OR operators and wraps complex queries in parentheses when necessary.
         *
         * @param queryBuf the StringBuilder to append to
         * @param query the query string to append
         */
        protected void appendQuery(final StringBuilder queryBuf, final String query) {
            String q = query;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java

          }
          return annotations;
        }
      }
    
      /**
       * Incorporate additional requirements into an existing requirements object.
       *
       * @param requirements the existing requirements object
       * @param moreRequirements more requirements to incorporate
       * @param source the source of the additional requirements (used only for error reporting)
       * @return the existing requirements object, modified to include the additional requirements
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Chars.java

       * value} is greater than {@code max}, {@code max} is returned.
       *
       * @param value the {@code char} value to constrain
       * @param min the lower bound (inclusive) of the range to constrain {@code value} to
       * @param max the upper bound (inclusive) of the range to constrain {@code value} to
       * @throws IllegalArgumentException if {@code min > max}
       * @since 21.0
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java

        public HtmlResponse index() {
            saveToken();
            return asListHtml();
        }
    
        /**
         * Displays the failure URL list page with pagination support.
         *
         * @param pageNumber the page number to display
         * @param form the search form containing filter criteria
         * @return HTML response for the failure URL list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

         * Sets the name and expiration time based on the provided parameters.
         *
         * @param sessionId the session ID to update
         * @param name the name to set for the crawling session (uses system name if blank)
         * @param dayForCleanup number of days until cleanup (sets expiration if >= 0)
         * @throws FessSystemException if unable to store the updated crawling session
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
Back to top