Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for endHtmlReport (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportWriter.kt

        val htmlTemplate = HtmlReportTemplate.load()
    
        fun beginHtmlReport() {
            writer.append(htmlTemplate.first)
            beginReportData()
            jsonModelWriter.beginModel()
        }
    
        fun endHtmlReport(buildDisplayName: String?, cacheAction: String, requestedTasks: String?, totalProblemCount: Int) {
            jsonModelWriter.endModel(buildDisplayName, cacheAction, requestedTasks, totalProblemCount)
            endReportData()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                }
    
                private
                fun closeHtmlReport(buildDisplayName: String?, cacheAction: String, requestedTasks: String?, totalProblemCount: Int) {
                    writer.endHtmlReport(buildDisplayName, cacheAction, requestedTasks, totalProblemCount)
                    writer.close()
                }
    
                private
                fun ManagedExecutor.shutdownAndAwaitTermination() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top