Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for indentation (0.05 sec)

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

        }
    
        /**
         * Increases the indentation level for nested logging.
         */
        public void indent() {
            indentLevel++;
        }
    
        /**
         * Decreases the indentation level for nested logging.
         */
        public void unindent() {
            if (indentLevel > 0) {
                indentLevel--;
            }
        }
    
        /**
         * Sets the indentation string to use (e.g., "  ", "    ", "\t").
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategyTest.java

            }
        }
    
        @Nested
        @DisplayName("XML Formatting")
        class XmlFormattingTests {
    
            @Test
            @DisplayName("should format pluginManagement with proper indentation")
            void shouldFormatPluginManagementWithProperIndentation() throws Exception {
                String pomXml = """
                    <?xml version="1.0" encoding="UTF-8"?>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Writer.java

        public void write(Writer writer, CoreExtensions coreExtensions) throws IOException {
            XmlSerializer serializer = new MXSerializer();
            serializer.setProperty("http://xmlpull.org/v1/doc/properties.html#serializer-indentation", "  ");
            serializer.setProperty("http://xmlpull.org/v1/doc/properties.html#serializer-line-separator", "\n");
            serializer.setOutput(writer);
            serializer.startDocument(coreExtensions.getModelEncoding(), null);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/path-operation-configuration.md

    You can write <a href="https://en.wikipedia.org/wiki/Markdown" class="external-link" target="_blank">Markdown</a> in the docstring, it will be interpreted and displayed correctly (taking into account docstring indentation).
    
    {* ../../docs_src/path_operation_configuration/tutorial004_py310.py hl[17:25] *}
    
    It will be used in the interactive docs:
    
    <img src="/img/tutorial/path-operation-configuration/image02.png">
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. docs/de/llm-prompt.md

    * «X is case-insensitive»: «Groß-/Klein­schrei­bung ist nicht relevant in X»
    * «standard Python»: «Standard-Python»
    * «deprecated»: «deprecatet»
    
    
    ### Other rules
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 09:39:53 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  6. CLAUDE.md

    - `DefaultContentsParserTest` - Text processing pipeline
    
    ---
    
    ## Code Conventions
    
    ### Java Style
    
    - **Formatter**: Eclipse formatter at `src/config/eclipse/formatter/java.xml`
    - **Indentation**: 4 spaces (no tabs)
    - **Line Length**: 140 characters max
    - **License Headers**: Required (use `mvn license:format`)
    
    ### Naming Conventions
    
    | Type | Convention | Example |
    |------|-----------|---------|
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  7. pyproject.toml

        "UP",  # pyupgrade
    ]
    ignore = [
        "E501",  # line too long, handled by black
        "B008",  # do not perform function calls in argument defaults
        "C901",  # too complex
        "W191",  # indentation contains tabs
    ]
    
    [tool.ruff.lint.per-file-ignores]
    "__init__.py" = ["F401"]
    "docs_src/dependencies/tutorial007_py39.py" = ["F821"]
    "docs_src/dependencies/tutorial008_py39.py" = ["F821"]
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  8. docs/es/docs/tutorial/path-operation-configuration.md

    Puedes escribir <a href="https://en.wikipedia.org/wiki/Markdown" class="external-link" target="_blank">Markdown</a> en el docstring, se interpretará y mostrará correctamente (teniendo en cuenta la indentación del docstring).
    
    {* ../../docs_src/path_operation_configuration/tutorial004_py310.py hl[17:25] *}
    
    Será usado en la documentación interactiva:
    
    <img src="/img/tutorial/path-operation-configuration/image02.png">
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top