Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeReportFileTo (0.21 sec)

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

         * Writes the report file to [outputDirectory].
         *
         * The file is laid out in such a way as to allow extracting the pure JSON model,
         * see [HtmlReportWriter].
         */
        internal
        fun writeReportFileTo(outputDirectory: File, buildDisplayName: String?, cacheAction: String, requestedTasks: String?, totalProblemCount: Int): File? {
            var reportFile: File?
            modifyState {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

            val cacheActionText = cacheAction.summaryText()
            val requestedTasks = startParameter.requestedTasksOrDefault()
            val buildDisplayName = buildName
            val htmlReportFile = report.writeReportFileTo(outputDirectory, buildDisplayName, cacheActionText, requestedTasks, summary.problemCount)
            if (htmlReportFile == null) {
                // there was nothing to report (no problems, no build configuration inputs)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top