Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for foreground (0.1 sec)

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

                    if (reader.getTerminal().getNumericCapability(InfoCmp.Capability.max_colors) >= 256) {
                        sb.style(AttributedStyle.DEFAULT.bold().foreground(69));
                    } else {
                        sb.style(AttributedStyle.DEFAULT.foreground(AttributedStyle.CYAN));
                    }
                } else {
                    sb.style(AttributedStyle.DEFAULT.boldOff().foregroundOff());
                }
            }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java

                        .build());
                return BAD_OPERATION;
            }
    
            context.addInHeader(context.style.italic().bold().foreground(Colors.rgbColor("yellow")), "goal: init");
            context.addInHeader("");
    
            ConsolePrompt.UiConfig promptConfig;
            if (OSUtils.IS_WINDOWS) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. tests/compose.yml

          # timeout handling
          if [ $$counter -gt 20 ]; then
            echo "Error: Database failed to start within timeout";
            exit 1;
          fi;
          # keep the container running: wait for the database process in the foreground
          wait
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Mon Aug 04 04:07:30 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/EncryptInvoker.java

            try {
                context.header = new ArrayList<>();
                context.style = new AttributedStyle();
                context.addInHeader(
                        context.style.italic().bold().foreground(Colors.rgbColor("green")),
                        "Maven Encryption " + CLIReportingUtils.showVersionMinimal());
                context.addInHeader("Tool for secure password management on workstations.");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeInvoker.java

            try {
                context.header = new ArrayList<>();
                context.style = new AttributedStyle();
                context.addInHeader(
                        context.style.italic().bold().foreground(Colors.rgbColor("green")),
                        "Maven Upgrade " + CLIReportingUtils.showVersionMinimal());
                context.addInHeader("Tool for upgrading Maven projects and dependencies.");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  6. src/main/assemblies/files/fess.in.bat

    set FESS_CLASSPATH=%FESS_HOME%\lib\classes
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Des-foreground=yes
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.home="%FESS_HOME%"
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.es.dir="%SEARCH_ENGINE_HOME%"
    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dfess.context.path=/
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 03:48:59 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top