Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for taskDependencies (0.51 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            }
    
            where:
            invocation              | code
            'Task.project'          | 'project.name'
            'Task.dependsOn'        | 'dependsOn'
            'Task.taskDependencies' | 'taskDependencies'
        }
    
        def "reports build listener registration on #registrationPoint"() {
    
            given:
            buildFile << code
    
            when:
            executer.noDeprecationChecks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

        }
    
        TaskInternal task(
            Map<String, ?> options = [:], String name) {
            def task = createTask(name, options.project ?: this.project, options.type ?: TaskInternal)
            _ * task.taskDependencies >> taskDependencyResolvingTo(task, options.dependsOn ?: [])
            _ * task.lifecycleDependencies >> taskDependencyResolvingTo(task, options.dependsOn ?: [])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    See the <<configuration_cache#config_cache:requirements:use_project_during_execution,configuration cache chapter>> for details on how to migrate these usages to APIs that are supported by the configuration cache.
    
    [[task_dependencies]]
    ==== Calling `Task.getTaskDependencies()` from a task action
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top