Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cacheAction (0.13 sec)

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

            writer.append(htmlTemplate.first)
            beginReportData()
            jsonModelWriter.beginModel()
        }
    
        fun endHtmlReport(buildDisplayName: String?, cacheAction: String, requestedTasks: String?, totalProblemCount: Int) {
            jsonModelWriter.endModel(buildDisplayName, cacheAction, requestedTasks, totalProblemCount)
            endReportData()
            writer.append(htmlTemplate.second)
        }
    
        private
        fun beginReportData() {
    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/JsonModelWriter.kt

            }
            if (requestedTasks != null) {
                comma()
                property("requestedTasks", requestedTasks)
            }
            comma()
            property("cacheAction", cacheAction)
            comma()
            property("documentationLink", documentationRegistry.getDocumentationFor("configuration_cache"))
    
            endObject()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

            }.toString()
        }
    
        private
        fun StringBuilder.appendSummaryHeader(
            cacheAction: String,
            totalProblemCount: Int
        ) {
            append(totalProblemCount)
            append(if (totalProblemCount == 1) " problem was found " else " problems were found ")
            append(cacheAction)
            append(" the configuration cache")
            if (overflowed) {
                append(", only the first ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top