Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,062 for mymessage (0.08 sec)

  1. src/test/java/jcifs/smb/WinErrorTest.java

        interface Handler {
            void handle(int code, String message);
        }
    
        @Mock
        Handler handler;
    
        @Test
        @DisplayName("Interaction: handler called with each code/message pair")
        void interaction_with_mock_handler_is_as_expected() {
            // Interaction test: simulate passing each code/message to a collaborator
            for (int i = 0; i < WinError.WINERR_CODES.length; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  2. 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)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilderFactory.java

         */
        int getTerminalWidth();
    
        /**
         * Creates a new message builder.
         * @return a new message builder
         */
        @Nonnull
        MessageBuilder builder();
    
        /**
         * Creates a new message builder of the specified size.
         * @param size the initial size of the message builder buffer
         * @return a new message builder
         */
        @Nonnull
        MessageBuilder builder(int size);
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/curl/CurlException.java

        public CurlException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new CurlException with the specified detail message.
         *
         * @param message the detail message (which is saved for later retrieval by the {@link #getMessage()} method).
         */
        public CurlException(final String message) {
            super(message);
        }
    
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadataRetrievalException.java

        }
    
        /**
         * @param message a message
         * @param cause a cause
         * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)}
         */
        @Deprecated
        public ArtifactMetadataRetrievalException(String message, Throwable cause) {
            this(message, cause, null);
        }
    
        public ArtifactMetadataRetrievalException(String message, Throwable cause, Artifact artifact) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_ko.properties

    # Javax Validator
    # ---------------
    constraints.AssertFalse.message = {item}는 false여야 합니다.
    constraints.AssertTrue.message = {item}는 true여야 합니다.
    constraints.DecimalMax.message = {item}는 {value}보다 작아야 합니다.
    constraints.DecimalMin.message = {item}는 {value}보다 커야 합니다.
    constraints.Digits.message = {item}는 숫자여야 합니다. (기대값: <숫자>.<숫자>)
    constraints.Future.message = {item}는 미래의 값이어야 합니다.
    constraints.Max.message = {item}는 {value} 이하여야 합니다.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_zh_TW.properties

    constraints.Range.message = {item} 必須在 {min} 到 {max} 之間。
    constraints.SafeHtml.message = {item} 包含危險的 HTML 內容。
    constraints.ScriptAssert.message = 腳本表達式 "{script}" 不為 true。
    constraints.URL.message = {item} 不是有效的URL。
    constraints.Required.message = {item} 是必需的。
    constraints.TypeInteger.message = {item} 必須是數字。
    constraints.TypeLong.message = {item} 必須是數字。
    constraints.TypeFloat.message = {item} 必須是數字。
    constraints.TypeDouble.message = {item} 必須是數字。
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/PluginException.java

        /**
         * Creates a plugin exception with message and cause.
         *
         * @param message the error message
         * @param cause the cause
         */
        public PluginException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Creates a plugin exception with message.
         *
         * @param message the error message
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

         * {@return true if the <b>debug</b> error level is enabled}
         */
        boolean isDebugEnabled();
    
        /**
         * Sends a message to the user in the <b>debug</b> error level.
         *
         * @param content the message to log
         */
        void debug(CharSequence content);
    
        /**
         * Sends a message (and accompanying exception) to the user in the <b>debug</b> error level.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/CommandExecutionException.java

        /**
         * Constructor with error message.
         * @param message The error message describing the command execution failure.
         */
        public CommandExecutionException(final String message) {
            super(message);
        }
    
        /**
         * Constructor with error message and cause.
         * @param message The error message describing the command execution failure.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top