Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for Arguments (0.21 sec)

  1. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        }
    
        /**
         * If the argument type at the specified position is a number, converts the argument to match the type.
         *
         * @param paramTypes
         *            array of parameter types
         * @param args
         *            array of arguments
         * @param index
         *            index of the argument to operate on
         * @return {@literal true} if the argument was converted to match the type
         */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/core/exception/EmptyArgumentException.java

         * @param args
         *            Array of arguments
         */
        public EmptyArgumentException(final String argName, final String messageCode, final Object[] args) {
            this(argName, messageCode, args, null);
        }
    
        /**
         * Creates an {@link EmptyArgumentException}.
         *
         * @param argName
         *            Name of the argument
         * @param messageCode
         *            Message code
         * @param args
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java

        }
    
        private static Stream<Arguments> completionFilterProvider() {
            return Stream.of(Arguments.of(FILE_NOTIFY_CHANGE_FILE_NAME, "File name changes"),
                    Arguments.of(FILE_NOTIFY_CHANGE_DIR_NAME, "Directory name changes"),
                    Arguments.of(FILE_NOTIFY_CHANGE_ATTRIBUTES, "Attribute changes"), Arguments.of(FILE_NOTIFY_CHANGE_SIZE, "Size changes"),
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java

        }
    
        private static Stream<Arguments> provideVersionRanges() {
            return Stream.of(Arguments.of(DialectVersion.SMB202, DialectVersion.SMB202, new int[] { 0x0202 }),
                    Arguments.of(DialectVersion.SMB202, DialectVersion.SMB210, new int[] { 0x0202, 0x0210 }),
                    Arguments.of(DialectVersion.SMB210, DialectVersion.SMB300, new int[] { 0x0210, 0x0300 }),
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/ClSQLException.java

        /**
         * The arguments for the message.
         */
        private final Object[] args;
    
        /**
         * The SQL string.
         */
        private final String sql;
    
        /**
         * Creates a {@link ClSQLException}.
         *
         * @param messageCode
         *            Message code
         * @param args
         *            Array of arguments
         */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java

         *
         * @param constructor
         *            The constructor. Must not be {@literal null}.
         * @param index
         *            The position of the argument.
         * @param map
         *            A {@link Map} with type variables as keys and type arguments as values for the parameterized type. Must not be {@literal null}.
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java

        }
    
        private static Stream<Arguments> provideFlagCombinations() {
            return Stream.of(Arguments.of(0x0, false), Arguments.of(0x1, true), // DFS
                    Arguments.of(0x2, true), // DFS_ROOT
                    Arguments.of(0x3, true), // DFS | DFS_ROOT
                    Arguments.of(0x8000, false), // ENCRYPT_DATA only
                    Arguments.of(0x8001, true), // ENCRYPT_DATA | DFS
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/netbios/NbtExceptionTest.java

                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.FMT_ERR, "ERR_NAM_SRVC/FMT_ERR: Format ErrorUnknown error code: 1"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.SRV_ERR, "ERR_NAM_SRVC/Unknown error code: 2"),
                    Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.IMP_ERR, "ERR_NAM_SRVC/Unknown error code: 4"),
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/util/StringUtilTest.java

            assertEquals(expected, result);
        }
    
        private static Stream<Arguments> provideDelimiters() {
            return Stream.of(Arguments.of(",", "A,B,C"), Arguments.of(", ", "A, B, C"), Arguments.of(" ", "A B C"), Arguments.of("|", "A|B|C"),
                    Arguments.of("::", "A::B::C"), Arguments.of("\n", "A\nB\nC"), Arguments.of("\r\n", "A\r\nB\r\nC"));
        }
    
        @Test
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/FileAccessException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Creates a new {@link FileAccessException} with the specified message code, arguments, and cause.
         *
         * @param messageCode
         *            the message code
         * @param args
         *            the message arguments
         * @param cause
         *            the cause
         */
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top