Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for beforeTask (0.19 sec)

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

        }
    
        @Deprecated("Deprecated in Java")
        override fun beforeTask(closure: Closure<*>) {
            @Suppress("DEPRECATION")
            delegate.beforeTask(closure)
        }
    
        @Deprecated("Deprecated in Java")
        override fun beforeTask(action: Action<Task>) {
            @Suppress("DEPRECATION")
            delegate.beforeTask(action)
        }
    
        @Deprecated("Deprecated in Java")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildlifecycle/taskExecutionEvents/groovy/build.gradle

    tasks.register('ok')
    
    tasks.register('broken') {
        dependsOn ok
        doLast {
            throw new RuntimeException('broken')
        }
    }
    
    gradle.taskGraph.beforeTask { Task task ->
        println "executing $task ..."
    }
    
    gradle.taskGraph.afterTask { Task task, TaskState state ->
        if (state.failure) {
            println "FAILED"
        }
        else {
            println "done"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 370 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildlifecycle/taskExecutionEvents/kotlin/build.gradle.kts

    tasks.register("ok")
    
    tasks.register("broken") {
        dependsOn("ok")
        doLast {
            throw RuntimeException("broken")
        }
    }
    
    gradle.taskGraph.beforeTask {
        println("executing $this ...")
    }
    
    gradle.taskGraph.afterTask {
        if (state.failure != null) {
            println("FAILED")
        } else {
            println("done")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 333 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/events/BuildExecutionEventsIntegrationTest.groovy

            run("broken")
    
            then:
            noExceptionThrown()
    
            where:
            path                          | registrationPoint
            "gradle.taskGraph.beforeTask" | "TaskExecutionGraph.beforeTask"
            "gradle.taskGraph.afterTask"  | "TaskExecutionGraph.afterTask"
        }
    
        @UnsupportedWithConfigurationCache(because = "tests listener behaviour")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionGraph.java

         *
         * @param closure The closure to execute when a task is about to be executed.
         * @deprecated This method is not supported when configuration caching is enabled.
         */
        @Deprecated
        void beforeTask(Closure closure);
    
        /**
         * <p>Adds an action to be called immediately before a task is executed. The task is passed to the action as a
         * parameter.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 20:29:51 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

     *
     * That is, this operation does not represent just the execution of task actions.
     *
     * This operation can fail _and_ yield a result.
     * If the operation gets as far as invoking the task executer
     * (i.e. beforeTask callbacks did not fail), then a result is expected.
     * If the task execution fails, or if afterTask callbacks fail, an operation failure is expected _in addition_.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientProvidedPhasedActionRunnerTest.groovy

            result.buildFailure == null
            result.clientFailure == null
    
            and:
            1 * buildController.fromBuildModel(_, _) >> { Boolean b, BuildTreeModelAction modelAction ->
                modelAction.beforeTasks(modelController)
                modelAction.fromBuildModel(modelController)
            }
            1 * projectsLoadedAction.execute(_) >> result1
            1 * buildFinishedAction.execute(_) >> result2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/buildtree/DefaultBuildTreeModelCreator.java

        ) {
            this.defaultTarget = defaultTarget;
            this.actionRunner = actionRunner;
        }
    
        @Override
        public <T> void beforeTasks(BuildTreeModelAction<? extends T> action) {
            action.beforeTasks(new DefaultBuildTreeModelController());
        }
    
        @Override
        public <T> T fromBuildModel(BuildTreeModelAction<? extends T> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 17:58:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildTreeModelCreator.kt

        private val delegate: BuildTreeModelCreator,
        private val cache: BuildTreeConfigurationCache
    ) : BuildTreeModelCreator {
        override fun <T : Any> beforeTasks(action: BuildTreeModelAction<out T>) {
            cache.maybePrepareModel {
                delegate.beforeTasks(action)
            }
        }
    
        override fun <T : Any?> fromBuildModel(action: BuildTreeModelAction<out T>): T? {
            return cache.loadOrCreateModel {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeModelAction.java

     * limitations under the License.
     */
    
    package org.gradle.internal.buildtree;
    
    import javax.annotation.Nullable;
    
    public interface BuildTreeModelAction<T> {
        void beforeTasks(BuildTreeModelController controller);
    
        @Nullable
        T fromBuildModel(BuildTreeModelController controller);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:55:55 UTC 2024
    - 870 bytes
    - Viewed (0)
Back to top