Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,718 for m_param (0.09 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /**
             * Sets the ID of the updated item.
             * @param id The ID to set.
             * @return This ApiUpdateResponse instance.
             */
            public ApiUpdateResponse id(final String id) {
                this.id = id;
                return this;
            }
    
            /**
             * Sets whether the item was created or updated.
             * @param created True if created, false if updated.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java

            return new CopyOptions().mapDelimiter(mapDelimiter);
        }
    
        /**
         * Returns a {@link CopyOptions} with the specified converter applied.
         *
         * @param converter
         *            The converter. Must not be {@literal null}.
         * @param propertyNames
         *            The property names to which this converter will be applied. Each element must not be {@literal null} or an empty string.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/java/org/codelibs/fess/app/service/KuromojiService.java

        /**
         * Default constructor.
         */
        public KuromojiService() {
            // do nothing
        }
    
        /**
         * Get a list of Kuromoji items.
         *
         * @param dictId The dictionary ID.
         * @param kuromojiPager The pager for Kuromoji.
         * @return A list of Kuromoji items.
         */
        public List<KuromojiItem> getKuromojiList(final String dictId, final KuromojiPager kuromojiPager) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

         *
         * This method fetches stemmer override entries with pagination support, updating
         * the provided pager with the current page state and navigation information.
         *
         * @param dictId The ID of the stemmer override dictionary to query
         * @param stemmerOvberridePager The pager object for pagination control and state
         * @return A list of stemmer override items for the current page, or empty list if dictionary not found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/PreauthIntegrityService.java

        }
    
        /**
         * Constructs a PreauthIntegrityService with specified configuration.
         *
         * @param secureRandom the secure random generator
         * @param hashAlgorithm the hash algorithm to use
         * @param enforceIntegrity whether to enforce integrity checks
         */
        public PreauthIntegrityService(SecureRandom secureRandom, int hashAlgorithm, boolean enforceIntegrity) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 12.1K bytes
    - Viewed (0)
Back to top