Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,706 for z_param (1.58 sec)

  1. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

         *            The pattern string.
         * @return The converted {@link Date}.
         */
        public static Date toDate(final Object src, final String pattern) {
            return toDate(src, pattern, LocaleUtil.getDefault());
        }
    
        /**
         * Converts the given object to a {@link Date}.
         *
         * @param src
         *            The source object to convert.
         * @param locale
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

         *            The pattern string.
         * @return The converted {@link Date}.
         */
        public static Date toDate(final Object src, final String pattern) {
            return toDate(src, pattern, LocaleUtil.getDefault());
        }
    
        /**
         * Converts the given object to a {@link Date}.
         *
         * @param src
         *            The source object to convert.
         * @param locale
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

         * Converts an object to {@link Date}.
         *
         * @param src the source object
         * @return the converted {@link Date}
         */
        public static Date toDate(final Object src) {
            return toDate(src, null, LocaleUtil.getDefault());
        }
    
        /**
         * Converts an object to {@link Date}.
         *
         * @param src the source object
         * @param pattern the pattern string
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/ClassUtil.java

         * using the specified class loader.
         *
         * @param <T>
         *            The class represented by the returned {@link Class} object
         * @param className
         *            The fully qualified name of the desired class. Must not be {@literal null} or empty.
         * @param loader
         *            The class loader to use to load the class
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

         *
         * @param config the configuration to use
         */
        protected SmbComTransactionResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * Constructs a transaction response with specified command.
         *
         * @param config the configuration to use
         * @param command the SMB command code
         * @param subcommand the transaction subcommand code
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/NameServiceClient.java

        /**
         * Retrieve all addresses of a host by it's name.
         *
         * @param host
         *            hostname to lookup all addresses for
         * @param type
         *            the hexcode of the name
         * @param scope
         *            the scope of the name
         * @param svr
         *            server to query
         *
         * @return the resolved addresses
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java

         *
         * @param type The component type.
         * @return The component.
         * @param <T> The component type.
         * @throws LookupException if no such component or there is some provisioning related issue.
         */
        @Nonnull
        <T> T lookup(Class<T> type);
    
        /**
         * Performs a lookup for given typed component.
         *
         * @param type The component type.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/util/Hexdump.java

         * java.lang.String} concatenation and {@link java.lang.StringBuffer}.
         *
         * @param val the integer value to convert to hexadecimal characters
         * @param dst the destination character array to write the hex digits into
         * @param dstIndex the starting index in the destination array
         * @param size the number of hex digits to write (will be left-padded with zeros)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmUtil.java

        }
    
        /**
         * Creates the NTLMv2 response for the supplied information.
         *
         * @param responseKeyNT the NT response key
         * @param serverChallenge the server challenge bytes
         * @param clientChallenge the client challenge bytes
         * @param nanos1601 the timestamp in nanoseconds since 1601
         * @param avPairs the AV pairs from the Type 2 message
         * @return the calculated response
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

        }
    
        /**
         * Create authenticator from URL userInfo string
         *
         * @param userInfo the userInfo string from URL
         * @param defDomain the default domain to use if not specified
         * @param defUser the default username to use if not specified
         * @param defPassword the default password to use if not specified
         * @param type the authentication type to use
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
Back to top