Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nonSuppressedProblemCount (0.37 sec)

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

        private
        val overflowed: Boolean,
    
        private
        val maxCollectedProblems: Int
    ) {
        val uniqueProblemCount: Int
            get() = uniqueProblems.size
    
        val nonSuppressedProblemCount: Int
            get() = problemCount - suppressedCount
    
        fun textForConsole(cacheActionText: String, htmlReportFile: File? = null): String {
            val documentationRegistry = DocumentationRegistry()
    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/ConfigurationCacheProblems.kt

            (summary.problemCount > 0 || incompatibleTasks.isNotEmpty()) && isFailOnProblems
    
        private
        fun hasTooManyProblems(summary: Summary) =
            summary.nonSuppressedProblemCount > startParameter.maxProblems
    
        private
        fun log(msg: String, vararg args: Any = emptyArray()) {
            logger.warn(msg, *args)
        }
    
        private
    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