Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isVerbose (0.04 sec)

  1. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/cisupport/CIInfo.java

         */
        @Nonnull
        default String message() {
            return "";
        }
    
        /**
         * Some CI systems may allow running jobs in "debug" (or some equivalent) mode.
         */
        default boolean isVerbose() {
            return false;
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Apr 13 18:50:07 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java

         * if applicable.
         */
        default boolean effectiveVerbose() {
            return options().isPresent() && options().orElseThrow().verbose().orElse(false)
                    || ciInfo().isPresent() && ciInfo().orElseThrow().isVerbose();
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 6.7K bytes
    - Viewed (0)
Back to top