Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for taskname (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            final boolean includeSubprojects;
            final String taskName;
    
            public ProjectResolutionResult(BuildState build, ProjectState project, boolean includeSubprojects, String taskName) {
                this.build = build;
                this.project = project;
                this.includeSubprojects = includeSubprojects;
                this.taskName = taskName;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventCrossVersionTest.groovy

        def "generates build phase events for task #taskName and expects #expectedReportedTasksCount run tasks"() {
            setupProject()
    
            when:
            def events = ProgressEvents.create()
            withConnection {
                it.newBuild().forTasks(taskName)
                    .addProgressListener(events, OperationType.BUILD_PHASE)
                    .run()
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 10:41:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

        class TaskWithSources {
            String outputDir = "build/output"
            File inputFile = file('src/data/input.txt')
            String taskName = 'test'
    
            String getBuildScript() {
                """
                    apply plugin: 'base'
    
                    task ${taskName} {
                        def sources = file("src")
                        inputs.dir sources skipWhenEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            }
        }
    
        private void executeTaskViaGradleProjectLaunchable(String taskName) {
            withConnection { connection ->
                def gradleProjects = connection.action(new LoadCompositeModel(GradleProject)).run()
                def launchables = findLaunchables(gradleProjects, taskName)
                assert launchables.size == 1
                def build = connection.newBuild()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

                    String previousTaskStatusLine = tasks.contains(taskName) ? taskStatusLines.get(tasks.lastIndexOf(taskName)) : "";
                    // Don't add if our last record has a `:taskName` status, and this one is `:taskName SOMETHING`
                    if (previousTaskStatusLine.equals(taskName) && !taskStatusLine.equals(taskName)) {
                        return;
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            withDebugFrame({ task.path }) {
                val taskType = GeneratedSubclasses.unpackType(task)
                val projectPath = task.project.path
                val taskName = task.name
                writeClass(taskType)
                writeString(projectPath)
                writeString(taskName)
                writeLong(task.taskIdentity.uniqueId)
                writeNullableString(task.reasonTaskIsIncompatibleWithConfigurationCache.orElse(null))
    
    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/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

            given:
            buildFile << """
                tasks.addRule("Pattern: ping<ID>") { String taskName ->
                    if (taskName.startsWith("ping")) {
                        task(taskName) {
                            doLast {
                                println "Pinging: " + (taskName - 'ping')
                            }
                        }
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

            where:
            task << ['execTask', 'execProjectMethod', 'execInjectedTaskAction']
        }
    
        private static String injectedTaskActionTask(String taskName, String taskActionBody) {
            return """
                abstract class InjectedServiceTask_$taskName extends DefaultTask {
    
                    @Classpath
                    abstract ConfigurableFileCollection getExecClasspath()
    
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

            buildFile << """
                tasks.addRule("create some tasks") { taskName ->
                    if (taskName == "bar") {
                        tasks.register("bar")
                    } else if (taskName == "baz") {
                        tasks.create("baz")
                    } else if (taskName == "notByRule") {
                        tasks.register("notByRule") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

            run taskName
    
            then:
            executed ":lib", ":child:jar", ":child:lib", ":$taskName"
    
            where:
            taskName               | _
            "direct"               | _
            "fileCollection"       | _
            "ownDependencies"      | _
            "allDependencies"      | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top