Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,064 for mesiace (0.04 sec)

  1. docs/smb3-features/03-multi-channel-design.md

            }
            if (message instanceof Smb2WriteRequest) {
                return ((Smb2WriteRequest)message).getLength() > 1048576;
            }
            return false;
        }
        
        private boolean isMetadataOperation(SMBMessage message) {
            return message instanceof Smb2QueryInfoRequest
                || message instanceof Smb2SetInfoRequest
                || message instanceof Smb2QueryDirectoryRequest;
        }
    }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/ndr/NdrExceptionTest.java

        /**
         * Test the constructor with a message.
         * Ensures that the exception is created with the correct message.
         */
        @Test
        void testConstructorWithMessage() {
            String testMessage = "This is a test message for NdrException.";
            NdrException exception = new NdrException(testMessage);
            assertEquals(testMessage, exception.getMessage(), "The exception message should match the input message.");
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    constraints.ScriptAssert.message = The script expression "{script}" is not true.
    constraints.URL.message = {item} is not a valid URL.
    constraints.Required.message = {item} is required.
    constraints.TypeInteger.message = {item} must be a number.
    constraints.TypeLong.message = {item} must be a number.
    constraints.TypeFloat.message = {item} must be a number.
    constraints.TypeDouble.message = {item} must be a number.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_en.properties

    constraints.ScriptAssert.message = The script expression "{script}" is not true.
    constraints.URL.message = {item} is not a valid URL.
    constraints.Required.message = {item} is required.
    constraints.TypeInteger.message = {item} must be a number.
    constraints.TypeLong.message = {item} must be a number.
    constraints.TypeFloat.message = {item} must be a number.
    constraints.TypeDouble.message = {item} must be a number.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

                    logger.warn("Failed to send {} to {}.", body, url, e);
                }
            }));
        }
    
        /**
         * Converts the discloser to a Slack message format.
         *
         * @param discloser the mail posting discloser
         * @return the formatted Slack message
         */
        protected String toSlackMessage(final SMailPostingDiscloser discloser) {
            final StringBuilder buf = new StringBuilder(100);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/PrompterException.java

        private static final long serialVersionUID = -3505070928479515081L;
    
        public PrompterException(String message) {
            super(message);
        }
    
        /**
         * @param message the message to give
         * @param e the {@link Exception}
         */
        public PrompterException(String message, Exception e) {
            super(message, e);
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:48:41 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/util/transport/ConnectionTimeoutExceptionTest.java

            assertNull(exception.getMessage(), "Message should be null for no-arg constructor");
            assertNull(exception.getCause(), "Cause should be null for no-arg constructor");
        }
    
        @Test
        void testStringConstructor() {
            // Test the constructor with a message
            String message = "Connection timed out.";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/InterpolatorException.java

         *
         * @param message the detail message. The detail message is saved for
         *                later retrieval by the {@link #getMessage()} method.
         */
        public InterpolatorException(String message) {
            super(message);
        }
    
        /**
         * Constructs a new InterpolatorException with the specified detail message and cause.
         *
         * <p>Note that the detail message associated with {@code cause} is <i>not</i>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Oct 02 21:26:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/lastafluteMap.dfprop

    #         ; freeGenList = list:{ [env or config or label or message or html] }
    #         ; propertiesHtmlList = list:{ [env or config or label or message] }
    #     }
    #     ; appMap = map:{
    #         ; [application name, camel case, initial uncapitalised] = map:{
    #             ; path = [relative path to application project from DBFlute client]
    #             ; freeGenList = list:{ [env or config or label or message or html] }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun May 20 08:20:11 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java

        public void test_constructor_withMessage() {
            // Test with normal message
            String message = "Offset exceeded the limit";
            ResultOffsetExceededException exception = new ResultOffsetExceededException(message);
    
            assertEquals(message, exception.getMessage());
            assertNotNull(exception.getStackTrace());
            assertTrue(exception.getStackTrace().length > 0);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.6K bytes
    - Viewed (0)
Back to top