Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for beforeTask (0.15 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/main/java/org/gradle/execution/taskgraph/DefaultTaskExecutionGraph.java

        }
    
        @Override
        public void beforeTask(final Closure closure) {
            notifyListenerRegistration("TaskExecutionGraph.beforeTask", closure);
            taskListeners.add(new ClosureBackedMethodInvocationDispatch("beforeExecute", closure));
        }
    
        @Override
        public void beforeTask(final Action<Task> action) {
            notifyListenerRegistration("TaskExecutionGraph.beforeTask", action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            }
            def action = Mock(Action)
    
            final Task a = task("a")
            final Task b = task("b")
    
            when:
            taskGraph.beforeTask(closure)
            taskGraph.beforeTask(action)
            taskExecutionListeners.source.beforeExecute(a)
            taskExecutionListeners.source.beforeExecute(b)
    
            then:
            1 * closure.call(a)
            1 * closure.call(b)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

            fullProject.projectDependencies.empty
        }
    
        def "does not run any tasks when fetching model"() {
            when:
            projectDir.file('build.gradle').text = '''
    apply plugin: 'java'
    gradle.taskGraph.beforeTask { throw new RuntimeException() }
    '''
            HierarchicalEclipseProject project = loadToolingModel(HierarchicalEclipseProject)
    
            then:
            project != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            "TaskExecutionGraph.addTaskExecutionListener" | "gradle.taskGraph.addTaskExecutionListener(new TaskExecutionAdapter())"
            "TaskExecutionGraph.beforeTask"               | "gradle.taskGraph.beforeTask {}"
            "TaskExecutionGraph.afterTask"                | "gradle.taskGraph.afterTask {}"
        }
    
        def "reports unsupported build listener #listenerType registration on #registrationPoint"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top