Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 893 for TASK (0.05 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultTaskTest.groovy

            when:
            task.actions.add(namedAction)
            task.actions.add(0, namedAction)
            task.doFirst(namedAction)
            task.doLast(namedAction)
            task.appendParallelSafeAction(namedAction)
            task.prependParallelSafeAction(namedAction)
    
            then:
            task.actions[0].displayName == "I have a name"
            task.actions[1].displayName == "I have a name"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            task.mainSpec.sourcePaths == [project.sourceSets.main.output] as Set
            task.manifest != null
            task.manifest.mergeSpecs.size() == 0
    
            when:
            task = project.tasks[BasePlugin.ASSEMBLE_TASK_NAME]
    
            then:
            task dependsOn(JvmConstants.JAR_TASK_NAME)
    
            when:
            task = project.tasks[JavaBasePlugin.CHECK_TASK_NAME]
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/plugins/NativeBasePlugin.java

                    task.getTargetPlatform().set(targetPlatform);
                    task.getToolChain().set(toolChain);
                    task.getInstallDirectory().set(buildDirectory.dir("install/" + names.getDirName()));
                    task.getExecutableFile().set(executable.getExecutableFile());
                    task.lib(executable.getRuntimeLibraries());
                });
    
                executable.getInstallTask().set(install);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 26.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    [source,text]
    ----
    $./gradlew :app:build
    
    > Task :app:processResources NO-SOURCE
    > Task :app:processTestResources NO-SOURCE
    > Task :some-logic:compileJava UP-TO-DATE
    > Task :some-logic:processResources NO-SOURCE
    > Task :some-logic:classes UP-TO-DATE
    > Task :some-logic:jar UP-TO-DATE
    > Task :app:compileJava
    > Task :app:classes
    > Task :app:jar UP-TO-DATE
    > Task :app:startScripts
    > Task :app:distTar
    > Task :app:distZip
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstylePluginTest.groovy

            }
    
            expect:
            task.description == null
            task.source.isEmpty()
            task.checkstyleClasspath == project.configurations.checkstyle
            task.configFile == project.file("checkstyle-config")
            task.configDirectory.get().getAsFile() == project.file("custom")
            task.config.inputFiles.singleFile == project.file("checkstyle-config")
            task.configProperties == [foo: "foo"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    The registered task will remain in this state until something in the build needs the instantiated task object.
    If the task object is never needed, the task will remain registered, and the cost of creating and configuring the task will be avoided.
    
    In Gradle, you register a task using link:{javadocPath}/org/gradle/api/tasks/TaskContainer.html#register-java.lang.String-[TaskContainer.register(java.lang.String)].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_device_propagation.mlir

    // CHECK-SAME: -> (tensor<i64> {tf.device = "/job:localhost/replica:0/task:0/device:TPU:0"}, tensor<i32> {tf.device = "/job:localhost/replica:0/task:0/device:TPU:0"})
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 19K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/tutorial_using_tasks.adoc

    [source]
    ----
    $ ./gradlew :app:hello
    
    > Task :app:compileJava UP-TO-DATE
    > Task :app:processResources NO-SOURCE
    > Task :app:classes UP-TO-DATE
    > Task :app:jar UP-TO-DATE
    > Task :app:startScripts UP-TO-DATE
    > Task :app:distTar UP-TO-DATE
    > Task :app:distZip UP-TO-DATE
    > Task :app:assemble UP-TO-DATE
    
    > Task :app:hello
    Hello world!
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            }
    
            then: "task progress events must be forwarded to the attached listeners"
            !events.tasks.empty
            events.operations == events.tasks
        }
    
        def "receive current task progress event even if one of multiple task listeners throws an exception"() {
            given:
            goodCode()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            """
        }
    
        def "default cacheability is BUILD_CACHE_DISABLED"() {
            buildFile << """
                task cacheable(type: Cacheable) {}
                task notCacheableByDefault(type: NotCacheableByDefault) {}
                task unspecified(type: UnspecifiedCacheabilityTask) {}
                task noOutputs(type: NoOutputs) {}
            """
            when:
            run "cacheable"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top