Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for PluginRegistry (0.5 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/SettingsScopeServices.java

        }
    
        @Provides
        protected PluginRegistry createPluginRegistry(PluginRegistry parentRegistry) {
            return parentRegistry.createChild(settings.getClassLoaderScope());
        }
    
        @Provides
        protected PluginManagerInternal createPluginManager(
            Instantiator instantiator,
            PluginRegistry pluginRegistry,
            InstantiatorFactory instantiatorFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

            this.instantiator = instantiator;
            this.target = target;
            this.pluginRegistry = pluginRegistry;
            this.domainObjectCollectionFactory = domainObjectCollectionFactory;
            this.pluginContainer = new DefaultPluginContainer(pluginRegistry, this, callbackDecorator);
            this.buildOperationRunner = buildOperationRunner;
            this.userCodeApplicationContext = userCodeApplicationContext;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

                }
            });
            addProvider(new WorkerSharedProjectScopeServices(project.getProjectDir()));
        }
    
        @Provides
        protected PluginRegistry createPluginRegistry(PluginRegistry rootRegistry) {
            PluginRegistry parentRegistry;
            ProjectState parent = project.getOwner().getBuildParent();
            if (parent == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleScopeServices.java

            );
        }
    
        @Provides
        PluginRegistry createPluginRegistry(PluginRegistry parentRegistry) {
            return parentRegistry.createChild(get(GradleInternal.class).getClassLoaderScope());
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/validate-external-gradle-plugin.gradle.kts

     * limitations under the License.
     */
    
    import org.gradle.api.file.ArchiveOperations
    import org.gradle.api.internal.initialization.ScriptHandlerInternal
    import org.gradle.api.internal.plugins.PluginRegistry
    import org.gradle.api.internal.project.ProjectInternal
    import java.net.URISyntaxException
    import java.net.URL
    import java.util.stream.Collectors
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginRegistry.java

    import java.util.Comparator;
    import java.util.Map;
    import java.util.Optional;
    import java.util.concurrent.ExecutionException;
    
    public class DefaultPluginRegistry implements PluginRegistry {
        private final PluginRegistry parent;
        private final PluginInspector pluginInspector;
        private final ClassLoaderScope classLoaderScope;
    
        private final LoadingCache<Class<?>, PluginImplementation<?>> classMappings;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginContainerTest.groovy

        def classLoader = new GroovyClassLoader(getClass().classLoader)
        def pluginRegistry = new DefaultPluginRegistry(pluginInspector, scope(classLoader))
        def target = Mock(PluginTarget)
        def instantiator = TestUtil.instantiatorFactory().inject()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

    import org.gradle.api.internal.initialization.ScriptHandlerFactory;
    import org.gradle.api.internal.plugins.DefaultPluginRegistry;
    import org.gradle.api.internal.plugins.PluginInspector;
    import org.gradle.api.internal.plugins.PluginRegistry;
    import org.gradle.api.internal.project.DefaultProjectRegistry;
    import org.gradle.api.internal.project.DefaultProjectTaskLister;
    import org.gradle.api.internal.project.IsolatedAntBuilder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.plugins.PluginRegistry> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PluginRegistry.java:0)
    Class <org.gradle.api.internal.plugins.PluginTarget> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (PluginTarget.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top