Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tty (0.01 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

            options.color().ifPresent(color -> {
                String c = color.toLowerCase(Locale.ENGLISH);
                if (!Arrays.asList("always", "yes", "force", "never", "no", "none", "auto", "tty", "if-tty")
                        .contains(c)) {
                    context.parsingFailed = true;
                    context.parserRequest
                            .logger()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 10 07:39:11 UTC 2025
    - 25.5K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            } else if ("never".equals(styleColor) || "no".equals(styleColor) || "none".equals(styleColor)) {
                context.coloredOutput = false;
            } else if (!"auto".equals(styleColor) && !"tty".equals(styleColor) && !"if-tty".equals(styleColor)) {
                throw new IllegalArgumentException(
                        "Invalid color configuration value '" + styleColor + "'. Supported are 'auto', 'always', 'never'.");
            } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
Back to top