Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for td (2.58 sec)

  1. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

        select("tr.severity-$severity").map { tr ->
            tr.select("td")[1]
                .select("span")
                .text()
                .substringBefore(" If you did this intentionally")
        }
    
    
    private
    fun Document.scrapeMessagesForSeverity(severity: String): List<ReportMessage> =
    
        select("tr.severity-$severity").map { tr ->
            val entry = tr.select("td")[1]
            ReportMessage(
                entry.select("span")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 16:02:23 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. gradle.properties

    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    # TD related properties
    gradle.internal.testdistribution.writeTraceFile=true
    develocity.internal.testdistribution.writeTraceFile=true
    gradle.internal.testdistribution.queryResponseTimeout=PT20S
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleApiExtensionsIntegrationTest.kt

                        println(inferredTypeOf(ocb))
    
                        val tt = tasks.withType<Task>()
                        val td = tt.withType<Delete>()
                        println(inferredTypeOf(tt))
                        println(inferredTypeOf(td))
                    }
                }
                """
            )
    
            assertThat(
                build("test", "-q").output,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 15:53:16 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. architecture/build-state-model.md

    # Build state model
    
    The Gradle daemon tracks state for various elements. These are arranged in a hierarchy:
    
    ```mermaid
      graph TD
    
      process["build process"]
      
      session["build session"]
      process --> session
      
      build_tree["build tree"]
      session --> build_tree
      
      build1["root build"]
      build_tree --> build1
      
      project1["root project"]
      build1 --> project1
      
      project2["project"]
      build1 --> project2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. architecture/platforms.md

    The diagram below shows the current set of architecture modules and platforms:
    
    <!-- This diagram is generated. Use `./gradlew :architectureDoc` to update it -->
    ```mermaid
        graph TD
    
        subgraph core["core platform"]
    
            core_runtime["core-runtime module"]
            style core_runtime stroke:#1abc9c,fill:#b1f4e7,stroke-width:2px,color:#000;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. JavadocStyleGuide.md

    "code", "colgroup", "dd", "del", "dfn", "div", "dl", "dt", "em", "fieldset", "font", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "i", "img", "ins", "kbd", "li", "ol", "p", "pre", "q", "samp", "small", "span", "strong", "sub", "sup", "table", "tbody", "td", "tfoot", "th", "thead", "tr", "tt", "u", "ul", "var"`.
    
    You can view the latest and full list of accepted tags in [`doclint/HtmlTag.java`](https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/javax/swing/text/html/HTML.Tag.html)...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top