Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 551 for colored (0.03 sec)

  1. docs/en/docs/_llm-test.md

    Code in code blocks should not be modified, with the exception of comments.
    
    See section `### Content of code blocks` in the general prompt in `scripts/translate.py`.
    
    ////
    
    ## Tabs and colored boxes { #tabs-and-colored-boxes }
    
    //// tab | Test
    
    /// info
    Some text
    ///
    
    /// note
    Some text
    ///
    
    /// note | Technical details
    Some text
    ///
    
    /// check
    Some text
    ///
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 14:48:47 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. docs/ru/docs/_llm-test.md

    Пример кода Bash...
    
    ```bash
    # Вывести приветствие вселенной
    echo "Hello universe"
    ```
    
    ...и пример вывода в консоли...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting server
            Searching for package file structure
    ```
    
    ...и ещё один пример вывода в консоли...
    
    ```console
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 21:25:03 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  3. docs/de/docs/_llm-test.md

    ```bash
    # Eine Begrüßung an das Universum ausgeben
    echo "Hello universe"
    ```
    
    ... und ein Konsolen-Codebeispiel ...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting server
            Searching for package file structure
    ```
    
    ... und noch ein Konsolen-Codebeispiel ...
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 07:17:04 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  4. docs/pt/docs/_llm-test.md

    ```bash
    # Imprimir uma saudação ao universo
    echo "Hello universe"
    ```
    
    ...e um exemplo de código de console...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting server
            Searching for package file structure
    ```
    
    ...e outro exemplo de código de console...
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:17:03 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. docs/es/docs/_llm-test.md

    ```bash
    # Imprime un saludo al universo
    echo "Hello universe"
    ```
    
    ...y un ejemplo de código de consola...
    
    ```console
    $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u>
    <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting server
            Searching for package file structure
    ```
    
    ...y otro ejemplo de código de consola...
    
    ```console
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:16:35 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                    if (ANSI_RESET.equals(nextColor)) {
                        // last ANSI escape code is reset: no next color
                        nextColor = "";
                    }
                }
    
                // effective line, with indent and reset if end is colored
                line = indent + line + ("".equals(nextColor) ? "" : ANSI_RESET);
    
                if ((i == lines.length - 1)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

            // To align Maven with outcomes, we set here color enabled based on these premises.
            // Note: Maven3 suffers from similar thing: if you do `mvn3 foo > log.txt`, the output will
            // not be not colored (good), but Maven will print out "Message scheme: color".
            MessageUtils.setColorEnabled(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 28 13:01:07 UTC 2025
    - 43.2K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // LOG COLOR
            String styleColor = cliRequest.getUserProperties().getProperty("style.color", "auto");
            styleColor = cliRequest.getUserProperties().getProperty(Constants.MAVEN_STYLE_COLOR_PROPERTY, styleColor);
            styleColor = commandLine.getOptionValue(CLIManager.COLOR, styleColor);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
  9. compat/maven-embedder/src/site/apt/index.apt.vm

     * since 3.5.0, output is colorized by default, with color disabled in batch mode: see
       {{{/shared/maven-shared-utils/apidocs/org/apache/maven/shared/utils/logging/package-summary.html}styled message API}}
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/MultipartReaderTest.kt

            source = Buffer().writeUtf8(multipart),
          )
    
        assertFailsWith<EOFException> {
          parts.nextPart()
        }
      }
    
      @Test fun `lf instead of crlf boundary is not honored`() {
        val multipart =
          """
          |--simple boundary
          |
          |abcd
          |--simple boundary
          |
          |efgh
          |--simple boundary--
          """.trimMargin()
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed May 28 02:11:14 UTC 2025
    - 15.4K bytes
    - Viewed (0)
Back to top