Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for wrap (0.18 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                } else {
                    inSection.add(next);
                }
                next = next.nextElementSibling();
            }
        }
    
        private void wrapContentInContainer(Document document) {
            // Wrap the page in a text container to get the margins
            Elements bodyContent = document.body().children().remove();
            document.body().prepend("<div class='container'/>");
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 25 04:49:56 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexerTest.groovy

            "<h1>text</h1> text  \t"                           | "<h1>text</h1><p> text</p>"
            "<ul><li>  text  <li> text  "                      | "<ul><li>  text  </li><li> text</li></ul>"
        }
    
        def "wraps text in an implicit <p> element"() {
            expect:
            parse(source) == transformed
    
            where:
            source                          | transformed
            "text"                          | "<p>text</p>"
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  3. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

                        line + getAgentOptions("\$APP_HOME").joinToString(separator = " ", prefix = "\" ", postfix = "\"") {
                            // Wrap the agent switch in double quotes, as the expanded APP_HOME may contain spaces.
                            // The joined line is enclosed in double quotes too, so double quotes here must be escaped.
                            "\\\"$it\\\""
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Fri Feb 24 10:25:27 GMT 2023
    - 6.3K bytes
    - Viewed (0)
Back to top