Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 893 for TASK (0.03 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/swift-static-library-task-graph.png

    swift-static-library-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/troubleshooting-task-execution-build-scan.png

    troubleshooting-task-execution-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 47.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            Task x = task("x", dependsOn: [e])
            Task f = task("f", dependsOn: [x])
            Task a = task("a", shouldRunAfter: [x])
            Task b = task("b", shouldRunAfter: [a])
            Task c = task("c", shouldRunAfter: [b])
            Task d = task("d", dependsOn: [f], shouldRunAfter: [c])
            relationships(e, shouldRunAfter: [d])
            Task build = task("build", dependsOn: [x, a, b, c, d, e])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/execution/taskgraph/DefaultTaskExecutionGraphSpec.groovy

            Task a = task("a")
            Task b = task("b", a)
            Task c = task("c", b, a)
            Task d = task("d", c)
    
            when:
            populateAndExecute([d])
    
            then:
            executedTasks == [a, b, c, d]
            failures.empty
        }
    
        def "executes dependencies in name order"() {
            Task a = task("a")
            Task b = task("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. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                rootProject.name = 'root'
            """
            buildFile << """
                task a
                task b(dependsOn: a)
                task c(dependsOn: [a, b])
                task d(dependsOn: c)
                defaultTasks 'd'
            """
            file("sub/build.gradle") << """
                task c
                task d(dependsOn: c)
            """
    
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

                beanStateReaderFor(task.javaClass).run {
                    readStateOf(task)
                }
                readRegisteredPropertiesOf(task)
                readDestroyablesOf(task)
                readLocalStateOf(task)
                readRequiredServices(task)
            }
    
            return task
        }
    
        private
        suspend fun WriteContext.writeUpToDateSpec(task: TaskInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            taskFactory.create(_ as TaskIdentity) >> task
    
            when:
            Task added = container.create([name: 'task', description: "some task"])
    
            then:
            added == task
            1 * task.setDescription("some task")
        }
    
        void 'can create task with group'() {
            def task = task("task")
            taskFactory.create(_ as TaskIdentity) >> task
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

            def cleanFooLocal = foo.task('cleanFooLocalState').destroys('build/foo-local')
            def cleanLocal = rootBuild.task('cleanLocal').dependsOn(cleanFooLocal)
            def generateFoo = foo.task('generateFoo').outputs('build/foo').localState('build/foo-local')
            def generateBar = bar.task('generateBar').outputs('build/bar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

            throw new UnsupportedOperationException("Adding a task provider directly to the task container is not supported.  Use the register() method instead.");
        }
    
        @Override
        public boolean addInternal(Task task) {
            return super.add(task);
        }
    
        @Override
        public boolean addAllInternal(Collection<? extends Task> task) {
            return super.addAll(task);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

                }
            }
        """
    
        def "can define tasks using task keyword and identifier"() {
            buildFile << """
                task nothing
                task withAction { doLast {} }
                task emptyOptions()
                task task
                task withOptions(dependsOn: [nothing, withAction, emptyOptions, task])
                task withOptionsAndAction(dependsOn: withOptions) { doLast {} }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top