Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 976 for m_param (0.04 sec)

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

        }
    
        /**
         * Gets a path mapping by ID.
         *
         * @param id the path mapping ID
         * @return the path mapping
         */
        public OptionalEntity<PathMapping> getPathMapping(final String id) {
            return pathMappingBhv.selectByPK(id);
        }
    
        /**
         * Stores a path mapping.
         *
         * @param pathMapping the path mapping to store
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

                ptList.add(Constants.PROCESS_TYPE_BOTH);
            }
            return ptList;
        }
    
        /**
         * Sets the path mapping list for a session.
         *
         * @param sessionId the session ID
         * @param pathMappingList the path mapping list
         */
        public void setPathMappingList(final String sessionId, final List<PathMapping> pathMappingList) {
            if (sessionId != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

         *
         * @param messageCode message code
         * @param cause cause of exception
         */
        public ClRuntimeException(final String messageCode, final Throwable cause) {
            this(messageCode, new Object[0], cause);
        }
    
        /**
         * Creates {@link ClRuntimeException}.
         *
         * @param messageCode message code
         * @param args arguments for messages
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryCreator.java

            return pattern.matcher(path).find();
        }
    
        /**
         * Creates a new dictionary file instance for the given parameters.
         *
         * @param id the encoded identifier for the dictionary file
         * @param path the file path of the dictionary
         * @param timestamp the timestamp of the dictionary file
         * @return a new DictionaryFile instance
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AtomicDouble.java

        return longBitsToDouble(value);
      }
    
      /**
       * Sets to the given value.
       *
       * @param newValue the new value
       */
      public final void set(double newValue) {
        long next = doubleToRawLongBits(newValue);
        value = next;
      }
    
      /**
       * Eventually sets to the given value.
       *
       * @param newValue the new value
       */
      public final void lazySet(double newValue) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/crypto/CachedCipher.java

                offerEncryptoCipher(cipher);
            }
            return encrypted;
        }
    
        /**
         * Encrypts the given data with the specified key.
         *
         * @param data
         *            the data to encrypt
         * @param key
         *            the key to use for encryption
         * @return the encrypted data
         */
        public byte[] encrypto(final byte[] data, final Key key) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/DocumentUtil.java

        }
    
        /**
         * Gets a typed value from a document map with a default value.
         *
         * @param <T> the type to convert the value to
         * @param doc the document map to extract the value from
         * @param key the key to look up in the document map
         * @param clazz the class type to convert the value to
         * @param defaultValue the default value to return if the key is not found or conversion fails
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            saveToken();
            return asListHtml();
        }
    
        /**
         * Show the list page.
         * @param pageNumber The page number.
         * @param form The search form.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse list(final Integer pageNumber, final SearchForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

         * This method is synchronized to ensure thread safety when managing processes.
         *
         * @param sessionId unique identifier for the process session
         * @param cmdList list of command and arguments to execute
         * @param pbCall callback to configure the ProcessBuilder
         * @param bufferSize size of the buffer for process output
         * @param outputCallback callback to handle process output lines
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/SearchEngineUtil.java

         */
        private SearchEngineUtil() {
        }
    
        /**
         * Creates an OutputStream from an XContentBuilder using the provided callback function.
         *
         * @param func the callback function to build XContent
         * @param mediaType the media type for the content builder
         * @return an OutputStream containing the built content, or an empty ByteArrayOutputStream if an error occurs
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top