Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 168 for task2_name (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/command_line_interface_basics.adoc

    Some plugins also add their own command line options.
    
    [[command_line_executing_tasks]]
    === Executing tasks
    To execute a task called `taskName` on the root project, type:
    
    ----
    $ gradle :taskName
    ----
    
    This will run the single `taskName` and all of its <<tutorial_using_tasks.adoc#sec:task_dependencies,dependencies>>.
    
    [[disambiguate_task_options_from_built_in_options]]
    === Specify options for tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild.generate-subprojects-info.gradle.kts

    import gradlebuild.buildutils.tasks.GenerateSubprojectsInfo
    import gradlebuild.buildutils.tasks.CheckSubprojectsInfo
    
    tasks.register<GenerateSubprojectsInfo>(GenerateSubprojectsInfo.TASK_NAME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 254 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/addRules/kotlin/build.gradle.kts

    // tag::all[]
    // tag::task-rule[]
    tasks.addRule("Pattern: ping<ID>") {
        val taskName = this
        if (startsWith("ping")) {
            task(taskName) {
                doLast {
                    println("Pinging: " + (taskName.replace("ping", "")))
                }
            }
        }
    }
    // end::task-rule[]
    
    tasks.register("groupPing") {
        dependsOn("pingServer1", "pingServer2")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 384 bytes
    - Viewed (0)
  4. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/FileSystemRootUpToDateIntegrationTest.groovy

                    }
                }
    
                task ${taskName}(type: InputDirectoryContentToOutputFileAction) {
                    inputDirectory = new File("${drive}\\\\")
                    output = file("${TextUtil.escapeString(outputFile.absolutePath)}")
                }
            """
            when:
            buildScript script
    
            then:
            succeeds taskName
            outputFile.text.contains inputFileName
    
            cleanup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/LaunchableGradleTaskSelector.java

            return this;
        }
    
        @Override
        public List<String> getArgs() {
            return Collections.singletonList(taskName);
        }
    
        public LaunchableGradleTaskSelector setTaskName(String taskName) {
            this.taskName = taskName;
            return this;
        }
    
        @Override
        public String getProjectPath() {
            return projectIdentifier.getProjectPath();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/cli/MaxWorkersIntegrationTest.groovy

                import java.util.concurrent.TimeUnit
    
                tasks.addRule("") { taskName ->
                    if (taskName.startsWith("verifyMaxWorkers")) {
                        task(taskName) { task ->
                            doLast {
                                def count = (taskName - "verifyMaxWorkers") as int
                                def latch = new CountDownLatch(count)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/markdown/MarkdownPlugin.groovy

            binary.inputs.withType(MarkdownSourceSet) { markdownSourceSet ->
                def taskName = binary.tasks.taskName("compile", markdownSourceSet.name)
                def outputDir = new File(binary.outputDir, markdownSourceSet.name)
                tasks.create(taskName, MarkdownHtmlCompile) { compileTask ->
                    compileTask.source = markdownSourceSet.source
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigurationCachingIntegrationTest.groovy

        def "returned service ref refers to service for that build"() {
            given:
            def taskName = "printInvocationId"
            buildFile << taskPrintBuildInvocationId(taskName)
    
            when:
            succeeds taskName, "--configuration-cache"
            def firstInvocationId = output.find(~/(?<=extension-buildInvocationId=).+(?=\n)/)
            succeeds taskName, "--configuration-cache"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/TasksFromProjectDependencies.java

    class TasksFromProjectDependencies implements TaskDependencyContainerInternal {
        private final TaskDependencyContainerInternal taskDependencyDelegate;
    
        public TasksFromProjectDependencies(
            String taskName,
            Supplier<Set<ProjectDependency>> projectDependencies,
            TaskDependencyFactory taskDependencyFactory,
            ProjectStateRegistry projectStateRegistry
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            String taskRegistration(String taskName, String taskType);
    
            String taskConfiguration(String taskName, String taskType);
    
            String suiteRegistration(String taskName, String taskType);
    
            String suiteConfiguration(String taskName, String taskType);
    
            String referenceTask(String taskName);
    
            String referenceSuite(String taskName);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top