Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,504 for m_param (0.04 sec)

  1. src/main/java/jcifs/util/InputValidator.java

            }
        }
    
        /**
         * Validates array bounds for safe copying
         *
         * @param src source array
         * @param srcOffset source offset
         * @param dst destination array
         * @param dstOffset destination offset
         * @param length copy length
         * @throws IllegalArgumentException if bounds are invalid
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/PropertiesUtil.java

         *
         * @param props
         *            Property set. Must not be {@literal null}.
         * @param file
         *            File. Must not be {@literal null}.
         * @param encoding
         *            Encoding. Must not be {@literal null} or empty.
         * @param comments
         *            Comments.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

         * <pre>
         * message: The size of {item} must be between {min} and {max}.
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @param min The parameter min for message. (NotNull)
         * @param max The parameter max for message. (NotNull)
         * @return this. (NotNull)
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

        /**
         * Creates and returns a new instance of {@link ConcurrentHashMap}.
         *
         * @param <K> the key type of {@link ConcurrentHashMap}
         * @param <V> the value type of {@link ConcurrentHashMap}
         * @param initialCapacity the initial capacity
         * @param loadFactor the load factor threshold for resizing
         * @param concurrencyLevel the estimated number of threads for concurrent updates
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 49.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/log/Logger.java

         * Outputs INFO information.
         *
         * @param message
         *            Message
         */
        public void info(final Object message) {
            if (isInfoEnabled()) {
                log.info(toString(message));
            }
        }
    
        /**
         * Outputs WARN information.
         *
         * @param message
         *            Message
         * @param throwable
         *            Exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/web.xml

        <init-param>
          <param-name>blockContentTypeSniffingEnabled</param-name>
          <param-value>true</param-value>
        </init-param>
        <init-param>
          <param-name>hstsEnabled</param-name>
          <param-value>false</param-value>
        </init-param>
        <init-param>
          <param-name>antiClickJackingEnabled</param-name>
          <param-value>false</param-value>
        </init-param>
        <init-param>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue May 06 09:19:22 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/jcifs/util/Encdec.java

         * @param dst the destination byte array
         * @param di the starting index in the destination array
         * @param enc the time encoding type (e.g., TIME_1970_SEC_32BE)
         * @return the number of bytes written
         */
        public static int enc_time(final Date date, final byte[] dst, final int di, final int enc) {
            long t;
    
            return switch (enc) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

            /**
             * Create file info from name and attributes
             *
             * @param name file name
             * @param size file size
             * @param lastModified last modified time
             * @param isDirectory true if directory
             * @param attributes file attributes
             * @param creationTime creation time
             * @param lastAccessTime last access time
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SidResolver.java

        /**
         * Resolve part of an array of SIDs using a cache and at most one MSRPC request.
         *
         * @param tc the CIFS context to use
         * @param authorityServerName the server to use for SID resolution
         * @param sids the array of SIDs to resolve
         * @param off the starting offset in the array
         * @param len the number of SIDs to resolve
         * @throws CIFSException if there is an error resolving the SIDs
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top