Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,755 for TASK (0.11 sec)

  1. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/tasks/application/CreateStartScriptsTest.groovy

            task.applicationName = "myApp"
    
            then:
            task.unixScript == new File(task.outputDir, 'myApp')
            task.windowsScript == new File(task.outputDir, 'myApp.bat')
        }
    
        def optsEnvironmentVariableNameDefaultsToApplicationName() {
            when:
            task.applicationName = null
    
            then:
            task.optsEnvironmentVar == null
    
            when:
            task.applicationName = "myApp"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/runtime/trace/annotation.go

    )
    
    type traceContextKey struct{}
    
    // NewTask creates a task instance with the type taskType and returns
    // it along with a Context that carries the task.
    // If the input context contains a task, the new task is its subtask.
    //
    // The taskType is used to classify task instances. Analysis tools
    // like the Go execution tracer may assume there are only a bounded
    // number of unique task types in the system.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/AbstractExecutionPlanSpec.groovy

            dependsOn(task, options.dependsOn ?: [])
            task.lifecycleDependencies >> taskDependencyResolvingTo(task, options.dependsOn ?: [])
            mustRunAfter(task, options.mustRunAfter ?: [])
            shouldRunAfter(task, options.shouldRunAfter ?: [])
            finalizedBy(task, options.finalizedBy ?: [])
            task.getSharedResources() >> (options.resources ?: [])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-projectDependencies/tests/assemble.out

    > Task :api:compileJava NO-SOURCE
    > Task :api:processResources NO-SOURCE
    > Task :api:classes UP-TO-DATE
    > Task :api:jar
    > Task :api:assemble
    > Task :utils:compileJava NO-SOURCE
    > Task :utils:processResources NO-SOURCE
    > Task :utils:classes UP-TO-DATE
    > Task :utils:jar
    > Task :utils:assemble
    > Task :web-service:compileJava NO-SOURCE
    > Task :web-service:processResources NO-SOURCE
    > Task :web-service:classes UP-TO-DATE
    > Task :web-service:jar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 528 bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/distribution/plugins/DistributionPluginTest.groovy

        }
    
        def "adds distZip task for main distribution"() {
            when:
            project.pluginManager.apply(DistributionPlugin)
    
            then:
            def task = project.tasks.distZip
            task instanceof Zip
            task.archiveFile.get().asFile == project.file("build/distributions/test-project.zip")
        }
    
        def "adds distZip task for custom distribution"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ivy-publish/quickstart/tests/publishingIvyPublishLifecycle.out

    > Task :generateDescriptorFileForIvyJavaPublication
    > Task :compileJava NO-SOURCE
    > Task :processResources NO-SOURCE
    > Task :classes UP-TO-DATE
    > Task :jar
    > Task :generateMetadataFileForIvyJavaPublication
    > Task :publishIvyJavaPublicationToIvyRepository
    > Task :publish
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 326 bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/TaskDetailsFactoryTest.groovy

            task.project >> project
            task.name >> 'task'
            task.description >> 'description'
            task.path >> ':path'
            project.relativeProjectPath(':path') >> 'task'
    
            expect:
            def details = factory.create(task)
            details.path.toString() == 'task'
            details.description == 'description'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top