Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for ProjectRegistry (0.23 sec)

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

    import java.util.stream.Collectors;
    
    public class DefaultCrossProjectModelAccess implements CrossProjectModelAccess {
        private final ProjectRegistry<ProjectInternal> projectRegistry;
    
        public DefaultCrossProjectModelAccess(ProjectRegistry<ProjectInternal> projectRegistry) {
            this.projectRegistry = projectRegistry;
        }
    
        @Override
        public ProjectInternal access(ProjectInternal referrer, ProjectInternal project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 04:11:36 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildModelControllerServices.kt

        class VintageIsolatedProjectsProvider : ServiceRegistrationProvider {
            @Provides
            fun createCrossProjectModelAccess(
                projectRegistry: ProjectRegistry<ProjectInternal>
            ): CrossProjectModelAccess {
                return DefaultCrossProjectModelAccess(projectRegistry)
            }
    
            @Provides
            fun createDynamicLookupRoutine(): DynamicLookupRoutine =
                DefaultDynamicLookupRoutine()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainerFactory.java

        private final TaskStatistics statistics;
        private final BuildOperationRunner buildOperationRunner;
        private final CrossProjectConfigurator crossProjectConfigurator;
        private final ProjectRegistry<ProjectInternal> projectRegistry;
    
        public DefaultTaskContainerFactory(
            Instantiator instantiator,
            TaskIdentityFactory taskIdentityFactory,
            ITaskFactory taskFactory,
            ProjectInternal project,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentModelBaseServices.java

        }
    
        private static class BuildScopeServices implements ServiceRegistrationProvider {
            @Provides
            ProjectModelResolver createProjectLocator(final ProjectRegistry<ProjectInternal> projectRegistry) {
                return new DefaultProjectModelResolver(projectRegistry);
            }
        }
    
        private static class GlobalScopeServices implements ServiceRegistrationProvider {
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

    import org.gradle.api.internal.cache.CacheConfigurationsInternal;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    import org.gradle.api.internal.plugins.PluginAwareInternal;
    import org.gradle.api.internal.project.ProjectRegistry;
    import org.gradle.caching.configuration.internal.BuildCacheConfigurationInternal;
    import org.gradle.declarative.dsl.model.annotations.Adding;
    import org.gradle.groovy.scripts.ScriptSource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

            BuildOperationRunner buildOperationRunner,
            CrossProjectConfigurator crossProjectConfigurator,
            CollectionCallbackActionDecorator decorator,
            ProjectRegistry<ProjectInternal> projectRegistry
        ) {
            return new DefaultTaskContainerFactory(
                get(Instantiator.class),
                get(TaskIdentityFactory.class),
                get(ITaskFactory.class),
                project,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/ToolingModelServices.java

            @Provides
            protected UniqueProjectNameProvider createBuildProjectRegistry(ProjectStateRegistry projectRegistry) {
                return new DefaultUniqueProjectNameProvider(projectRegistry);
            }
    
            @Provides
            protected BuildScopeToolingModelBuilderRegistryAction createIdeBuildScopeToolingModelBuilderRegistryAction(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateRegistry.java

        @Nullable
        BuildProjectRegistry findProjectsFor(BuildIdentifier buildIdentifier);
    
        /**
         * Registers the projects of a build.
         */
        void registerProjects(BuildState owner, ProjectRegistry<DefaultProjectDescriptor> projectRegistry);
    
        /**
         * Registers a single project.
         */
        ProjectState registerProject(BuildState owner, DefaultProjectDescriptor projectDescriptor);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainer.java

        private final ITaskFactory taskFactory;
        private final NamedEntityInstantiator<Task> taskInstantiator;
        private final BuildOperationRunner buildOperationRunner;
        private final ProjectRegistry<ProjectInternal> projectRegistry;
    
        private final TaskStatistics statistics;
        private final boolean eagerlyCreateLazyTasks;
    
        private MutableModelNode modelNode;
    
        public DefaultTaskContainer(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

            delegate.setBaseProjectClassLoaderScope(classLoaderScope)
        }
    
        override fun getProjectRegistry(): ProjectRegistry<ProjectInternal> =
            delegate.projectRegistry
    
        override fun includedBuilds(): MutableList<out IncludedBuildInternal> =
            delegate.includedBuilds()
        //endregion delegated members
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top