Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 976 for m_param (0.03 sec)

  1. src/main/java/org/codelibs/core/lang/MethodUtil.java

         *
         * @param <T>
         *            The return type of the method
         * @param method
         *            The method. Cannot be {@literal null}
         * @param target
         *            The object on which the underlying method is to be called. {@literal null} for {@literal static} methods
         * @param args
         *            The arguments used for the method call
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                }
            });
        }
    
        /**
         * Outputs statistics information for a crawler object.
         *
         * @param keyObj the crawler object the statistics relate to
         * @param data the statistics data to output
         * @param begin the timestamp when tracking began
         * @param done whether tracking was completed normally
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/Tuple4.java

         *
         * @param <T1>
         *            The type of the first value
         * @param <T2>
         *            The type of the second value
         * @param <T3>
         *            The type of the third value
         * @param <T4>
         *            The type of the fourth value
         * @param value1
         *            The first value
         * @param value2
         *            The second value
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

         * Converts an object to {@link Date}.
         *
         * @param src the source object
         * @return the converted {@link Date}
         */
        public static Date toDate(final Object src) {
            return toDate(src, null, LocaleUtil.getDefault());
        }
    
        /**
         * Converts an object to {@link Date}.
         *
         * @param src the source object
         * @param pattern the pattern string
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/ClassUtil.java

         * using the specified class loader.
         *
         * @param <T>
         *            The class represented by the returned {@link Class} object
         * @param className
         *            The fully qualified name of the desired class. Must not be {@literal null} or empty.
         * @param loader
         *            The class loader to use to load the class
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/WebApiException.java

            return statusCode;
        }
    
        /**
         * Constructs a WebApiException with the specified status code, message, and cause.
         *
         * @param statusCode The HTTP status code
         * @param message The detail message
         * @param cause The cause of this exception
         */
        public WebApiException(final int statusCode, final String message, final Throwable cause) {
            super(message, cause);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

        /**
         * Gets a file configuration entity based on the form and current user info.
         *
         * @param form the create form
         * @param username the current username
         * @param currentTime the current time
         * @return optional file configuration entity
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

        }
    
        /**
         * Displays the path mapping list with pagination support.
         *
         * @param pageNumber the optional page number for pagination
         * @param form the search form containing search criteria
         * @return HTML response for the path mapping 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
    - 16K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            });
    
        }
    
        /**
         * Retrieves multiple documents by their document IDs.
         *
         * @param docIds Array of document IDs to retrieve
         * @param fields Array of field names to include in the results
         * @param userBean Optional user information for permission checking
         * @param searchRequestType Type of search request for role-based access control
         * @return List of document data maps
         */
    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/core/io/ResourceTraversalUtil.java

         * </p>
         *
         * @param rootDir the root directory (must not be {@literal null})
         * @param baseDirectory the base directory
         * @param handler the handler to process resources (must not be {@literal null})
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top