Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for requestedTasks (0.17 sec)

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

                    cacheAction: String,
                    requestedTasks: String?,
                    totalProblemCount: Int
                ): Pair<State, File?> {
    
                    val reportFile = try {
                        executor
                            .submit(Callable {
                                closeHtmlReport(buildDisplayName, cacheAction, requestedTasks, totalProblemCount)
    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. subprojects/core/src/main/java/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparer.java

                private final Set<Task> requestedTasks;
                private final Set<Task> filteredTasks;
                private final PlannedNodeGraph plannedNodeGraph;
    
                public CalculateTaskGraphResult(Set<Task> requestedTasks, Set<Task> filteredTasks, PlannedNodeGraph plannedNodeGraph) {
                    this.requestedTasks = requestedTasks;
                    this.filteredTasks = filteredTasks;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

            endArray()
    
            comma()
            property("totalProblemCount") {
                write(totalProblemCount.toString())
            }
            if (buildDisplayName != null) {
                comma()
                property("buildName", buildDisplayName)
            }
            if (requestedTasks != null) {
                comma()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
        }
    
        void 'finalizer tasks are scheduled as expected (#requestedTasks)'() {
            given:
            setupProject()
    
            expect:
            2.times {
                succeeds(*requestedTasks)
                result.assertTasksExecutedInOrder any(':d', exact(':c', ':a')), ':b'
            }
    
            where:
            requestedTasks << [['a'], ['a', 'b'], ['d', 'a']]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  6. 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) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            // Task to call, with the same finalizer than one of its dependencies
            Task requestedTask = task('requestedTask', dependsOn: [dependency], finalizedBy: [finalizer])
    
            when:
            addToGraphAndPopulate([requestedTask])
    
            then:
            executes(dependency, requestedTask, finalizer, finalTask)
        }
    
        @Issue("GRADLE-2983")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
Back to top