Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 495 for TASK (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                "Build service 'counter' is being used by task ':broken' without the corresponding declaration via 'Task#usesService'. " +
                    "This behavior has been deprecated. " +
                    "This will fail with an error in Gradle 9.0. " +
                    "Declare the association between the task and the build service using 'Task#usesService'. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r54/RunEclipseAutoBuildTasksCrossVersionSpec.groovy

            }
    
            then:
            taskExecuted(out, ":foo")
            taskExecuted(out, ":bar")
        }
    
    
        def "placeholder task never overlaps with project task"() {
            setup:
            buildFile << """
                task nothing {
                }
    
                task nothing_ {
                }
            """
    
            def projectsLoadedHandler = new IntermediateResultHandlerCollector<Void>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/GradleProjectBuilderOptionsCrossVersionSpec.groovy

                }
            }
    
            then:
            result.assertOutputContains("realizing non-lazy task")
            if (realizesLazy) {
                result.assertOutputContains("realizing lazy task")
            } else {
                result.assertNotOutput("realizing lazy task")
            }
    
            project.tasks.isEmpty() == !tasksInModel
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/AbstractCodeQualityPlugin.java

            project.getTasks().withType(getCastedTaskType()).configureEach(new Action<Task>() {
                @Override
                public void execute(Task task) {
                    String prunedName = task.getName().replaceFirst(getTaskBaseName(), "");
                    if (prunedName.isEmpty()) {
                        prunedName = task.getName();
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. src/internal/trace/summary_test.go

    				{Task: 12, Category: "log2", Message: "do"},
    				{Task: 12, Category: "log", Message: "fanout region4"},
    				{Task: 12, Category: "log", Message: "fanout region0"},
    				{Task: 12, Category: "log", Message: "fanout region1"},
    				{Task: 12, Category: "log", Message: "fanout region2"},
    				{Task: 12, Category: "log", Message: "before do"},
    				{Task: 12, Category: "log", Message: "fanout region3"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

        def "does not configure all projects when excluded task path is not qualified and is exact match for task in default project"() {
            createDirs("a", "a/child", "b", "b/child", "c")
            settingsFile << "include 'a', 'a:child', 'b', 'b:child', 'c'"
            file('a').mkdirs()
            file('b').mkdirs()
            buildFile << """
    allprojects {
        task one
        task two
        task three
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/MultipleTaskOptionsIntegrationTest.groovy

            given:
            createDirs("project2")
            settingsFile << "include 'project2'"
            buildFile << """
                allprojects {
                    task someTask(type: SomeTask)
                }
                task task1 //extra stress
                task task2
    
                ${taskWithMultipleOptions()}
            """
    
            when:
            run 'someTask'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectReportIntegTest.groovy

            """
        }
    
        def "configuration cache for Project Report plugin task '#task' on empty project"() {
            given:
            configurationCacheRun(task, *options)
            def firstRunOutput = removeVfsLogOutput(result.normalizedOutput)
                .replaceAll(/Calculating task graph as no cached configuration is available for tasks: ${task}.*\n/, '')
                .replaceAll(/Configuration cache entry stored.\n/, '')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DeprecatedFeaturesListener.kt

            if (shouldNagFor(task, runningTask)) {
                nagUserAbout("Invocation of $invocationDescription at execution time", 7, "task_project")
            }
        }
    
        override fun onTaskDependenciesAccess(invocationDescription: String, task: TaskInternal, runningTask: TaskInternal?) {
            if (shouldNagFor(task, runningTask)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

            where:
            type                             | tasksInput             | expectedOutput
            "Task"                           | "copy1.get()"          | "[copy1]"
            "TaskProvider"                   | "copy1"                | "[copy1]"
            "Array[Task, TaskProvider]"      | "copy1.get(), copy2"   | "[copy1, copy2]"
            "Collection(Task, TaskProvider)" | "[copy1.get(), copy2]" | "[copy1, copy2]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top