Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,062 for mymessage (0.14 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/smb/NtlmContext.java

            };
        }
    
        /**
         * Creates a Type 3 (authentication) message in response to a Type 2 (challenge) message.
         * @param token the Type 2 message bytes
         * @return the Type 3 message bytes
         * @throws SmbException if an error occurs during message creation
         */
        protected byte[] makeAuthenticate(final byte[] token) throws SmbException {
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            // Create a very long exception message
            StringBuilder longMessage = new StringBuilder("Error: ");
            for (int i = 0; i < 100; i++) {
                longMessage.append("This is a very long error message part ").append(i).append(". ");
            }
            final String errorMessage = longMessage.toString();
    
            // Create mock SearchEngineClient that throws exception with long message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  4. compat/maven-builder-support/src/test/java/org/apache/maven/building/ProblemCollectorFactoryTest.java

            ProblemCollector collector = ProblemCollectorFactory.newInstance(null);
            collector.setSource("pom.xml");
            collector.add(Problem.Severity.ERROR, "Error message", 10, 5, null);
            collector.add(Problem.Severity.WARNING, "Warning message", 15, 3, null);
    
            List<Problem> problems = collector.getProblems();
            assertEquals(2, problems.size(), "Should collect both problems");
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Jul 20 20:19:43 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

         */
        private final Object[] args;
    
        /**
         * The formatted message.
         */
        private final String message;
    
        /**
         * The simple message without the message code.
         */
        private final String simpleMessage;
    
        /**
         * Creates {@link ClRuntimeException}.
         *
         * @param messageCode message code
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbException.java

        /**
         * Creates an SMB exception with detailed context
         *
         * @param message the error message
         * @param errorCode the SMB error code
         * @param severity the error severity
         * @param category the error category
         */
        public SmbException(String message, int errorCode, Severity severity, Category category) {
            super(message);
            this.errorCode = errorCode;
            this.severity = severity;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java

            super("While configuring wagon for '" + repositoryId + "': " + message, cause);
    
            this.repositoryId = repositoryId;
            this.originalMessage = message;
        }
    
        public WagonConfigurationException(String repositoryId, String message) {
            super("While configuring wagon for '" + repositoryId + "': " + message);
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            WitnessNotificationMessage message = new WitnessNotificationMessage();
    
            // Message type
            int messageType = buf.dec_ndr_long();
            message.setType(messageType);
    
            // Message length
            int messageLength = buf.dec_ndr_long();
            message.setLength(messageLength);
    
            // Based on message type, decode specific data
            switch (messageType) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
Back to top