Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getCoreAndPluginsScope (0.59 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderScopeRegistry.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.UserHome.class)
    public interface ClassLoaderScopeRegistry {
    
        ClassLoaderScope getCoreAndPluginsScope();
    
        ClassLoaderScope getCoreScope();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 992 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/DefaultClassLoaderScopeRegistry.java

        }
    
        @Override
        public ClassLoaderScope getCoreAndPluginsScope() {
            return coreAndPluginsScope;
        }
    
        @Override
        public ClassLoaderScope getCoreScope() {
            return coreScope;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 03 07:46:21 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/ExtractPluginRequestsTask.java

                compilePluginsBlock(scriptPlugin);
            }
        }
    
        private void compilePluginsBlock(PrecompiledGroovyScript scriptPlugin) {
            ClassLoaderScope classLoaderScope = getClassLoaderScopeRegistry().getCoreAndPluginsScope();
            CompileOperation<?> pluginsCompileOperation = getCompileOperationFactory().getPluginsBlockCompileOperation(scriptPlugin.getScriptTarget());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/CompileGroovyScriptPluginsTask.java

        @Internal
        abstract ListProperty<PrecompiledGroovyScript> getScriptPlugins();
    
        @TaskAction
        void compileScripts() {
            ClassLoaderScope classLoaderScope = getClassLoaderScopeRegistry().getCoreAndPluginsScope();
            ClassLoader compileClassLoader = new URLClassLoader(DefaultClassPath.of(getClasspath()).getAsURLArray(), classLoaderScope.getLocalClassLoader());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

            );
        }
    
        private ClassLoaderScope getInputClassLoaderScope() {
            return getClassLoaderScopeRegistry().getCoreAndPluginsScope();
        }
    
        @TaskAction
        public void action() {
            FileTree kotlinDslExtensionsJar = getArchives().zipTree(getKotlinDslExtensionsJar());
            getFs().sync(spec -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 19 17:15:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/internal/PluginUseServices.java

                    dependencyManagementServices,
                    dependencyMetaDataProvider
                );
                return new DefaultInjectedClasspathPluginResolver(
                    classLoaderScopeRegistry.getCoreAndPluginsScope(),
                    scriptClassPathResolver,
                    fileCollectionFactory,
                    pluginInspector,
                    injectedPluginClasspath.getClasspath(),
                    instrumentationStrategy,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/internal/precompiled/GeneratePluginAdaptersTask.java

            }
        }
    
        private CompiledScript<PluginsAwareScript, ?> loadCompiledPluginsBlocks(PrecompiledGroovyScript scriptPlugin) {
            ClassLoaderScope classLoaderScope = getClassLoaderScopeRegistry().getCoreAndPluginsScope();
            CompileOperation<?> pluginsCompileOperation = getCompileOperationFactory().getPluginsBlockCompileOperation(scriptPlugin.getScriptTarget());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 22:50:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

        }
    
        @Override
        public ClassLoaderScope getClassLoaderScope() {
            if (classLoaderScope == null) {
                classLoaderScope = () -> getClassLoaderScopeRegistry().getCoreAndPluginsScope();
            }
            return classLoaderScope.get();
        }
    
        @Inject
        protected abstract ClassLoaderScopeRegistry getClassLoaderScopeRegistry();
    
        @Override
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

        }
    
        @Provides
        protected PluginRegistry createPluginRegistry(ClassLoaderScopeRegistry scopeRegistry, PluginInspector pluginInspector) {
            return new DefaultPluginRegistry(pluginInspector, scopeRegistry.getCoreAndPluginsScope());
        }
    
        @Provides
        protected BuildScopeServiceRegistryFactory createServiceRegistryFactory(final ServiceRegistry services) {
            return new BuildScopeServiceRegistryFactory(services);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
Back to top