Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 1,294 for Message2 (1.09 sec)

  1. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

            assertEquals("protocolType should be FILE", ProtocolType.FILE, annotation.protocolType());
            assertEquals("message should be default", "{org.lastaflute.validator.constraints.UriType.message}", annotation.message());
        }
    
        // Test annotation with custom message
        public void test_annotationWithCustomMessage() throws Exception {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type2Message.java

        }
    
        /**
         * Creates a Type-2 message using default values from the current
         * environment.
         *
         * @param tc
         *            context to use
         */
        public Type2Message(final CIFSContext tc) {
            this(tc, getDefaultFlags(tc), null, null);
        }
    
        /**
         * Creates a Type-2 message in response to the given Type-1 message
         * using default values from the current environment.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java

         *
         * @param message the message to display
         * @return the password entered by the user
         * @throws PrompterException if an exception occurs
         */
        @Nonnull
        String promptForPassword(@Nullable String message) throws PrompterException;
    
        /**
         * Displays a message to the user.
         *
         * @param message the message to display
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java

                super(message);
            }
    
            /**
             * Create exception with cause
             *
             * @param message error message
             * @param cause underlying cause
             */
            public NoAvailableChannelException(String message, Throwable cause) {
                super(message, cause);
            }
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  5. src/test/java/jcifs/ntlmssp/Type2MessageTest.java

                // When
                Type2Message message = new Type2Message(mockContext, customFlags, TEST_CHALLENGE, TEST_TARGET);
    
                // Then
                assertNotNull(message);
                assertEquals(customFlags, message.getFlags());
                assertArrayEquals(TEST_CHALLENGE, message.getChallenge());
                assertEquals(TEST_TARGET, message.getTarget());
                assertNotNull(message.getTargetInformation());
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/ResultOffsetExceededException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Constructor.
         * @param message The exception message.
         */
        public ResultOffsetExceededException(final String message) {
            super(message);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/ClIndexOutOfBoundsException.java

        public ClIndexOutOfBoundsException() {
            super();
        }
    
        /**
         * Creates a {@link ClIndexOutOfBoundsException}.
         *
         * @param message
         *            Message
         */
        public ClIndexOutOfBoundsException(final String message) {
            super(message);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  8. src/test/java/jcifs/util/transport/MessageTest.java

    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Test;
    
    class MessageTest {
    
        private Message message;
    
        @BeforeEach
        void setUp() {
            // Create an anonymous implementation of the Message interface for testing
            message = new Message() {
                private boolean retainPayload = false;
                private byte[] rawPayload;
    
                @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/cache/BatchRequestException.java

        private final List<RequestResult<?, ?>> results;
    
        /**
         * Constructs a new BatchRequestException with the specified message and results.
         *
         * @param <REQ> The type of the request
         * @param <REP> The type of the response
         * @param message The error message describing the batch operation failure
         * @param allResults List of results from all attempted requests in the batch
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/validation/CustomSizeTest.java

        // Test field with only maxKey
        @CustomSize(maxKey = "test.max.only")
        private String testFieldMaxOnly;
    
        // Test field with custom message
        @CustomSize(minKey = "test.min", maxKey = "test.max", message = "Custom error message")
        private String testFieldWithMessage;
    
        // Test field with groups
        @CustomSize(groups = { TestGroup.class })
        private String testFieldWithGroups;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top