Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for li (0.32 sec)

  1. .cm/plugins/filters/isEnabledAutomation/index.js

     *
     * <ul>
     *     <li>The automation is enabled for all PRs via the presence of 'always' in the appropriate map entry above.</li>
     * </ul>
     *
     * or
     *
     * <ul>
     *     <li>The author is a member of the Gradle organization,</li>
     *     <li>and has opted into the automation by adding their username to the appropriate map entry above.</li>
     * </ul>
     *
     * or
     *
     * <ul>
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                //Table of Content is repeated from above's h2 but this would put it in the wrong location. So print everything not starting with Tale
                if(!name.startsWith("Table")){
                    toc.append("<li class=\"mainTopic\"><a/></li>").children().last().select("a").first().text(name).attr("href", "#" + anchor);
                }
    
                //If the heading is listed under the h2 starting with new then create an h3 indent in the TOC
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Jan 26 13:00:32 GMT 2023
    - 8.1K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

            val entry = tr.select("td")[1]
            ReportMessage(
                entry.select("span")
                    .text().substringBefore(" If you did this intentionally"),
                entry.select("ul li")
                    .map { it.text() }
    
            )
        }
    
    
    internal
    data class ReportMessage(
        val message: String,
        val details: List<String>
    )
    
    
    internal
    data class RichReport(
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Sep 21 16:02:23 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

            return latests
        }
    
        private
        fun fetchNightlyBuildId(buildListUrl: String): String =
            Jsoup.connect(buildListUrl)
                .get()
                .select("li a")
                .first()!!
                .text()
    
        private
        fun DocumentBuilderFactory.fetchNightlyVersion(mavenMetadataUrl: String): String =
            fetchVersionsFromMavenMetadata(mavenMetadataUrl)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Jun 02 09:17:07 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

                    )
                    writer.println("<ul>")
                    incubatingDescriptions.sorted().forEach { incubating ->
                        writer.println("   <li>${incubating.escape()}</li>")
                    }
                    writer.println("</ul>")
                }
                writer.println("</body></html>")
            }
        }
    
        private
    HTML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Jun 25 02:53:14 GMT 2023
    - 12.7K bytes
    - Viewed (0)
Back to top