Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,643 for z_param (0.06 sec)

  1. 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)
  2. 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)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/PathMatcherFactory.java

         *
         * @param baseDirectory the base directory for relativizing paths during matching
         * @param includes the patterns of files to include, or null/empty for including all files
         * @param excludes the patterns of files to exclude, or null/empty for no exclusion
         * @param useDefaultExcludes whether to augment excludes with default SCM exclusion patterns
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jul 21 19:37:56 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            }
            return null;
        }
    
        /**
         * Checks whether the arguments are suitable for the parameter types.
         *
         * @param paramTypes
         *            array of parameter types
         * @param args
         *            array of arguments
         * @param adjustNumber
         *            if {@literal true}, converts arguments to match number types if necessary
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  6. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

        /**
         * Creates a Type-3 message in response to the given Type-2 message.
         *
         * @param type2 the Type-2 message to respond to
         * @param password the user's password
         * @param domain the domain name
         * @param user the username
         * @param workstation the workstation name
         * @param flags the flags to use for the Type-3 message
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/SLinkedList.java

        /**
         * Returns the element at the specified position.
         *
         * @param index the index
         * @return the element
         */
        public E get(final int index) {
            return getEntry(index).element;
        }
    
        /**
         * Sets the element at the specified position.
         *
         * @param index the index
         * @param element the element
         * @return the original element
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/FieldUtil.java

        }
    
        /**
         * Returns the value of the field represented by the given {@link Field} for the specified object.
         *
         * @param <T> the type of the field
         * @param field the field (must not be {@literal null})
         * @param target the object from which to extract the field value; {@literal null} if the field is static
         * @return the value represented by the field in the object
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/Interpolator.java

        }
    
        /**
         * Interpolates the values in the given map using the provided callback function.
         *
         * @param map The map containing key-value pairs to be interpolated.
         * @param callback The function to resolve variable values not found in the map.
         * @param defaultsToEmpty If true, unresolved placeholders are replaced with empty strings. If false, they are left unchanged.
         */
        default void interpolate(
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jan 13 16:14:35 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  10. 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)
Back to top