Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for task_project (0.2 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskActionIntegrationTest.groovy

            succeeds("broken")
    
            then:
            noExceptionThrown()
        }
    
        @UnsupportedWithConfigurationCache(because = "tests unsupported behaviour")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStableConfigurationCacheIntegrationTest.groovy

                succeeds ':problematic'
            }
    
            then:
            if (withCC) {
                problems.assertFailureHasProblems(failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    See the <<configuration_cache#config_cache:requirements:build_listeners,configuration cache chapter>> for details on how to migrate these usages to APIs that are supported by the configuration cache.
    
    [[task_project]]
    ==== Calling `Task.getProject()` from a task action
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/SelectedTaskExecutionAction.java

                for (Node node : nodes) {
                    if (node instanceof LocalTaskNode) {
                        ProjectInternal taskProject = node.getOwningProject();
                        if (seen.add(taskProject)) {
                            taskProject.bindAllModelRules();
                        }
                    }
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                assert taskProjectPath != null;
                ProjectInternal taskProject = resolveProject(taskProjectPath);
                if (taskProject != null) {
                    String taskName = taskPath.getName();
                    return new TaskSelection(
                        taskProject.getPath(),
                        taskName,
                        tasks -> tasks.add(taskProject.getTasks().getByName(taskName))
                    );
                }
    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. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def configuration = conf()
    
            def mainTask = Mock(Task)
            def rootProject = Mock(Project)
            def taskProject = Mock(Project)
            mainTask.project >> taskProject
            taskProject.rootProject >> rootProject
    
            def otherTask = Mock(Task)
            def otherTaskSet = [otherTask] as Set
            def dependentProject = Mock(Project)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top