Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for totalProblemCount (0.21 sec)

  1. 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) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                    requestedTasks: String?,
                    totalProblemCount: Int
                ): Pair<State, File?> {
    
                    val reportFile = try {
                        executor
                            .submit(Callable {
                                closeHtmlReport(buildDisplayName, cacheAction, requestedTasks, totalProblemCount)
                                moveSpoolFileTo(outputDirectory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportWriter.kt

            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() {
            writer.run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

            propertyName("diagnostics")
            beginArray()
        }
    
        fun endModel(buildDisplayName: String?, cacheAction: String, requestedTasks: String?, totalProblemCount: Int) {
            endArray()
    
            comma()
            property("totalProblemCount") {
                write(totalProblemCount.toString())
            }
            if (buildDisplayName != null) {
                comma()
                property("buildName", buildDisplayName)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

            HasConfigurationCacheProblemsSpec spec
        ) {
            def totalProblemCount = spec.totalProblemsCount ?: spec.uniqueProblems.size()
            assertProblemsHtmlReport(
                rootDir,
                output,
                totalProblemCount,
                spec.uniqueProblems.size(),
                spec.problemsWithStackTraceCount == null ? totalProblemCount : spec.problemsWithStackTraceCount
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. testing/smoke-ide-test/src/smokeIdeTest/groovy/org/gradle/ide/sync/fixtures/IsolatedProjectsIdeSyncFixture.groovy

                def location = configurationCacheProblemsFixture.formatTrace(it['trace'])
                Pair.of(location, message)
            }.unique()
    
            assert jsModel.totalProblemCount == spec.totalProblemsCount
            assert actualLocationsWithProblems.size() == spec.locationsWithProblems.size()
            assert actualLocationsWithProblems.every { actualLocation ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top