Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for task3 (0.16 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

        }
    
        def "has union of producer task from providers unless producer task attached"() {
            given:
            def task1 = Stub(Task)
            def task2 = Stub(Task)
            def task3 = Stub(Task)
            def producer = Stub(Task)
            property.set(supplierWithProducer(task1))
            property.addAll(supplierWithProducer(task2))
            property.add(supplierWithProducer(task3))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            given:
            Task broken = task("broken", type: Async, failure: new RuntimeException())
            Task finalizerDep = task("finalizerDep", type: Async, dependsOn: [broken])
            Task finalizer = task("finalizer", type: Async, dependsOn: [finalizerDep])
            Task finalized = task("finalized", type: Async, finalizedBy: [finalizer])
            Task task = task("task", type: Async, dependsOn: [finalized])
    
    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/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

        }
    
        def "has union of producer task from providers unless producer task attached"() {
            given:
            def task1 = Stub(Task)
            def task2 = Stub(Task)
            def task3 = Stub(Task)
            def producer = Stub(Task)
            property.set(supplierWithProducer(task1))
            property.putAll(supplierWithProducer(task2))
            property.put('a', supplierWithProducer(task3, '1'))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/writing-tasks-7.png

    writing-tasks-7.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 00:13:54 UTC 2024
    - 69.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/writing-tasks-6.png

    writing-tasks-6.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 87.9K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.GradleBuild.getBuildName()> does not have raw return type assignable to org.gradle.api.provider.Property in (GradleBuild.java:0)
    Method <org.gradle.api.tasks.GradleBuild.getDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (GradleBuild.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/writing-tasks-2.png

    writing-tasks-2.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 70.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/writing-tasks-4.png

    writing-tasks-4.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/performance/task-execution-cacheable.png

    task-execution-cacheable.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 87.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        def "build dependencies are calculated from the artifacts visited during graph resolution"() {
            def configuration = conf()
            def targetTask = Mock(Task)
            def task1 = Mock(Task)
            def task2 = Mock(Task)
            def requiredTasks = [task1, task2] as Set
            def artifactTaskDependencies = Mock(TaskDependency)
            def visitedArtifactSet = Mock(VisitedArtifactSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top