Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for CrossProjectConfigurator (1.09 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/CrossProjectConfigurator.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.project;
    
    import org.gradle.api.Action;
    import org.gradle.api.Project;
    
    public interface CrossProjectConfigurator {
    
        void project(ProjectInternal project, Action<? super Project> configureAction);
    
        void subprojects(Iterable<? extends ProjectInternal> projects, Action<? super Project> configureAction);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 04 05:31:52 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainerFactory.java

        private final ProjectInternal project;
        private final TaskStatistics statistics;
        private final BuildOperationRunner buildOperationRunner;
        private final CrossProjectConfigurator crossProjectConfigurator;
        private final ProjectRegistry<ProjectInternal> projectRegistry;
    
        public DefaultTaskContainerFactory(
            Instantiator instantiator,
            TaskIdentityFactory taskIdentityFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

        BuildOperationRunner buildOperationRunner = new TestBuildOperationRunner()
        ListenerBuildOperationDecorator listenerBuildOperationDecorator = new TestListenerBuildOperationDecorator()
        CrossProjectConfigurator crossProjectConfigurator = Mock(CrossProjectConfigurator)
    
        GradleInternal gradle
    
        def setup() {
            def serviceRegistry = Stub(ServiceRegistry)
            _ * serviceRegistryFactory.createFor(_) >> serviceRegistry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

        private final ListenerBroadcast<BuildListener> buildListenerBroadcast;
        private final ListenerBroadcast<ProjectEvaluationListener> projectEvaluationListenerBroadcast;
        private final CrossProjectConfigurator crossProjectConfigurator;
        private List<IncludedBuildInternal> includedBuilds;
        private final MutableActionSet<Project> rootProjectActions = new MutableActionSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

        }
    
        @Provides
        protected TaskContainerInternal createTaskContainerInternal(
            TaskStatistics taskStatistics,
            BuildOperationRunner buildOperationRunner,
            CrossProjectConfigurator crossProjectConfigurator,
            CollectionCallbackActionDecorator decorator,
            ProjectRegistry<ProjectInternal> projectRegistry
        ) {
            return new DefaultTaskContainerFactory(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

    import org.gradle.api.internal.file.archive.DefaultDecompressionCoordinator;
    import org.gradle.api.internal.project.BuildOperationCrossProjectConfigurator;
    import org.gradle.api.internal.project.CrossProjectConfigurator;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.cache.UnscopedCacheBuilderFactory;
    import org.gradle.cache.internal.BuildScopeCacheDir;
    import org.gradle.cache.internal.InMemoryCacheDecoratorFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

    import org.gradle.api.internal.StartParameterInternal
    import org.gradle.api.internal.initialization.ClassLoaderScope
    import org.gradle.api.internal.plugins.PluginManagerInternal
    import org.gradle.api.internal.project.CrossProjectConfigurator
    import org.gradle.api.internal.project.CrossProjectModelAccess
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.api.internal.project.ProjectRegistry
    import org.gradle.api.invocation.Gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.api.internal.plugins.PluginManagerInternal> is not annotated with @ServiceScope in (PluginManagerInternal.java:0)
    Class <org.gradle.api.internal.project.CrossProjectConfigurator> is not annotated with @ServiceScope in (CrossProjectConfigurator.java:0)
    Class <org.gradle.api.internal.project.DeferredProjectConfiguration> is not annotated with @ServiceScope in (DeferredProjectConfiguration.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            serviceRegistry.add(DynamicLookupRoutine, new DefaultDynamicLookupRoutine())
            serviceRegistry.add(SoftwareComponentContainer, Mock(SoftwareComponentContainer))
            serviceRegistry.add(CrossProjectConfigurator, Mock(CrossProjectConfigurator))
            serviceRegistry.add(ListenerBuildOperationDecorator, Mock(ListenerBuildOperationDecorator))
            serviceRegistry.add(ArtifactHandler, Mock(ArtifactHandler))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

        DependencyResolutionManagementInternal dependencyResolutionManagement = Stub(DependencyResolutionManagementInternal)
        CrossProjectConfigurator crossProjectConfigurator = new BuildOperationCrossProjectConfigurator(buildOperationRunner)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top