Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,146 for mymessage (0.25 sec)

  1. src/test/java/jcifs/RuntimeCIFSExceptionTest.java

        @Test
        @DisplayName("Should create RuntimeCIFSException with message")
        void testConstructorWithMessage() {
            // Given
            String message = "CIFS runtime error occurred";
    
            // When
            RuntimeCIFSException exception = new RuntimeCIFSException(message);
    
            // Then
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/CommonServerMessageBlock.java

    import jcifs.util.transport.Message;
    
    /**
     * Common interface for all SMB message blocks in the jCIFS protocol implementation.
     * Provides core functionality for encoding/decoding SMB messages, handling message signing,
     * and managing message metadata such as IDs, commands, and authentication information.
     *
     * @author mbechler
     */
    public interface CommonServerMessageBlock extends Message {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_es.properties

    constraints.Range.message = {item} debe estar entre {min} y {max}.
    constraints.SafeHtml.message = {item} contiene contenido HTML peligroso.
    constraints.ScriptAssert.message = La expresión de script "{script}" no es verdadera.
    constraints.URL.message = {item} no es una URL válida.
    constraints.Required.message = {item} es obligatorio.
    constraints.TypeInteger.message = {item} debe ser un número.
    constraints.TypeLong.message = {item} debe ser un número.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

        public void test_constructorWithMessage() {
            // Test constructor with message only
            String message = "Theme installation failed";
            ThemeException exception = new ThemeException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/LookupException.java

        private static final long serialVersionUID = -6259322450070320286L;
    
        public LookupException(String message) {
            super(message);
        }
    
        /**
         * @param message the message to give
         * @param e the {@link Exception}
         */
        public LookupException(String message, Exception e) {
            super(message, e);
        }
    
        /**
         * @param e the {@link Exception}
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Oct 02 21:26:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java

            // Test constraint message constants
            assertEquals("{constraints.AssertFalse.message}", FessMessages.CONSTRAINTS_AssertFalse_MESSAGE);
            assertEquals("{constraints.AssertTrue.message}", FessMessages.CONSTRAINTS_AssertTrue_MESSAGE);
            assertEquals("{constraints.DecimalMax.message}", FessMessages.CONSTRAINTS_DecimalMax_MESSAGE);
            assertEquals("{constraints.DecimalMin.message}", FessMessages.CONSTRAINTS_DecimalMin_MESSAGE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  7. src/test/java/jcifs/util/transport/TransportExceptionTest.java

        }
    
        @Test
        @DisplayName("Test constructor with message creates exception with specified message")
        public void testConstructorWithMessage() {
            // Test with various messages
            String message = "Test error message";
            TransportException exception = new TransportException(message);
    
            // Verify the exception has the correct message
            assertNotNull(exception);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java

        /**
         * Gets the size of the original unencrypted message
         *
         * @return the original message size
         */
        public int getOriginalMessageSize() {
            return this.originalMessageSize;
        }
    
        /**
         * Sets the size of the original unencrypted message
         *
         * @param originalMessageSize
         *            the original message size to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/exception/SQLRuntimeExceptionTest.java

            // ## Act ##
            final String message = sqlRuntimeException.getMessage();
    
            // ## Assert ##
            System.out.println(message);
            assertContains(message, "ErrorCode=7650");
            assertContains(message, "SQLState=fooState");
            assertContains(message, "some reason");
            assertContains(message, "ErrorCode=7660");
            assertContains(message, "SQLState=barState");
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_de.properties

    constraints.SafeHtml.message = {item} enthält unsicheren HTML-Inhalt.
    constraints.ScriptAssert.message = Der Skriptausdruck "{script}" ist nicht wahr.
    constraints.URL.message = {item} ist keine gültige URL.
    constraints.Required.message = {item} ist erforderlich.
    constraints.TypeInteger.message = {item} muss eine Zahl sein.
    constraints.TypeLong.message = {item} muss eine Zahl sein.
    constraints.TypeFloat.message = {item} muss eine Zahl sein.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top