Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for taskname (0.56 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/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)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                if (taskProject != null) {
                    String taskName = taskPath.getName();
                    return new TaskSelection(
                        taskProject.getPath(),
                        taskName,
                        tasks -> tasks.add(taskProject.getTasks().getByName(taskName))
                    );
                }
                return new TaskSelection(null, null, tasks -> {});
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        val defaultExecuter = "embedded"
    
        // For all the other executers, add an executer specific task
        testType.executers.forEach { executer ->
            val taskName = "$executer${prefix.capitalize()}Test"
            val testTask = createTestTask(taskName, executer, sourceSet, testType) {}
            if (executer == defaultExecuter) {
                // The test task with the default executer runs with 'check'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            someTaskOutput.assertExists()
        }
    
        private void assertTaskOutputCached(String taskName) {
            assert listCacheFiles().any { it.name == cacheOperations.getCacheKeyForTask(taskName) }
        }
    
        private void assertTaskOutputNotCached(String taskName) {
            def cacheKey = cacheOperations.getCacheKeyForTaskOrNull(taskName)
            assert cacheKey == null
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

                }
            }
    
            class ParTask extends DefaultTask {
                @TaskAction zzz() {
                    def taskName = name
                    services.get(WorkerExecutor.class).noIsolation().submit(TestWorkAction) {
                        it.name = taskName
                    }
                }
            }
            """
        }
    
    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. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

        }
    
        def "logs replaced task"() {
            when:
            DeprecationLogger.deprecateTask("taskName").replaceWith("replacementTask").willBeRemovedInGradle9().undocumented().nagUser()
    
            then:
            expectMessage "The taskName task has been deprecated. This is scheduled to be removed in Gradle ${NEXT_GRADLE_VERSION}. Please use the replacementTask task instead."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top