Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    - Method link:{javadocPath}/org/gradle/api/execution/TaskExecutionGraph.html#beforeTask-org.gradle.api.Action-[TaskExecutionGraph.beforeTask()]
    - Method link:{javadocPath}/org/gradle/api/execution/TaskExecutionGraph.html#afterTask-org.gradle.api.Action-[TaskExecutionGraph.afterTask()]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K 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. 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)
  9. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.execution.TaskExecutionGraph.beforeTask(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (TaskExecutionGraph.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K 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