Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,488 for m_param (0.35 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

        //                                               -------
        /**
         * Displays the details of a specific search log entry.
         *
         * @param crudMode the CRUD mode for the operation
         * @param logType the type of log entry
         * @param id the ID of the search log entry to display
         * @return HTML response for the search log details 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
    - 10.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java

         * Create a new handle reconnector
         * @param manager the persistent handle manager
         */
        public HandleReconnector(PersistentHandleManager manager) {
            this(manager, 3, 1000);
        }
    
        /**
         * Create a new handle reconnector with custom settings
         * @param manager the persistent handle manager
         * @param maxRetries maximum number of retry attempts
         * @param retryDelay base retry delay in milliseconds
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SigningDigest.java

            }
        }
    
        /**
         * Updates the digest with the specified data.
         *
         * @param input the input buffer containing data to digest
         * @param offset the offset in the buffer where data starts
         * @param len the length of data to digest
         */
        public void update(final byte[] input, final int offset, final int len) {
            if (LogStream.level >= 5) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

       *     return DEFAULT_VALUE;
       *   }
       * </pre>
       *
       * @param target the object to proxy
       * @param interfaceType the interface you wish the returned proxy to implement
       * @param timeoutDuration with timeoutUnit, the maximum length of time that callers are willing to
       *     wait on each method call to the proxy
       * @param timeoutUnit with timeoutDuration, the maximum length of time that callers are willing to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            /**
             * Constructor for RequestParameter.
             * @param request The HTTP servlet request
             * @param query The search query string
             * @param tags Array of tags to filter suggestions
             * @param fields Array of fields to search in for suggestions
             * @param num The maximum number of suggestions to return
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/message/MessageFormatter.java

        /** Flag indicating initialization */
        protected static volatile boolean initialized;
    
        /**
         * Returns the message.
         *
         * @param messageCode
         *            Message code
         * @param args
         *            Arguments
         * @return Message
         */
        public static String getMessage(final String messageCode, final Object... args) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmPasswordAuthentication.java

         * class which is in turn used by NTLM HTTP authentication functionality.
         *
         * @param domain the authentication domain
         * @param username the username to authenticate with
         * @param challenge the server challenge bytes
         * @param ansiHash the ANSI password hash
         * @param unicodeHash the Unicode password hash
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/rdma/RdmaErrorHandler.java

        private final int maxRetries;
        private final long retryDelayMs;
    
        /**
         * Create new RDMA error handler
         *
         * @param statistics statistics tracker
         * @param maxRetries maximum number of retries for recoverable errors
         * @param retryDelayMs delay between retries in milliseconds
         */
        public RdmaErrorHandler(RdmaStatistics statistics, int maxRetries, long retryDelayMs) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top