Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for ClassLoaderScope (0.24 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

                        .get()
                }
    
    
        private
        fun configuredProjectSchemaOf(scriptTarget: Any, classLoaderScope: ClassLoaderScope): TypedProjectSchema? {
            require(classLoaderScope.isLocked) {
                "project.classLoaderScope must be locked before querying the project schema"
            }
            return projectSchemaProvider.schemaFor(scriptTarget)?.takeIf { it.isNotEmpty() }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/IProjectFactory.java

            ProjectDescriptor projectDescriptor,
            ProjectState owner,
            @Nullable ProjectInternal parent,
            ServiceRegistryFactory serviceRegistryFactory,
            ClassLoaderScope selfClassLoaderScope,
            ClassLoaderScope baseClassLoaderScope
        );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

        override fun getServices(): ServiceRegistry =
            delegate.services
    
        override fun setClassLoaderScope(classLoaderScope: Supplier<out ClassLoaderScope>) {
            delegate.setClassLoaderScope(classLoaderScope)
        }
    
        override fun getClassLoaderScope(): ClassLoaderScope =
            delegate.classLoaderScope
    
        override fun setIncludedBuilds(includedBuilds: MutableCollection<out IncludedBuildInternal>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginRequestApplicator.java

         * the requested plugins.
         *
         * A null target indicates that no plugin requests should be resolved but only the setup of the given
         * {@link ClassLoaderScope}.
         */
        void applyPlugins(PluginRequests requests, ScriptHandlerInternal scriptHandler, @Nullable PluginManagerInternal target, ClassLoaderScope classLoaderScope);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/PluginRequestsHandler.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.provider
    
    import org.gradle.api.internal.initialization.ClassLoaderScope
    import org.gradle.api.internal.initialization.ScriptHandlerInternal
    import org.gradle.api.internal.plugins.PluginAwareInternal
    
    import org.gradle.plugin.management.internal.PluginRequests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptHandler.java

            DependencyResolutionServices dependencyResolutionServices,
            ClassLoaderScope classLoaderScope,
            BuildLogicBuilder buildLogicBuilder
        ) {
            this.dependencyResolutionServices = dependencyResolutionServices;
            this.scriptResource = scriptSource.getResource().getLocation();
            this.classLoaderScope = classLoaderScope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 17:56:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

            rootState.createMutableModel(Stub(ClassLoaderScope), Stub(ClassLoaderScope))
    
            def project = project("p1")
            def state = registry.stateFor(projectId("p1"))
    
            1 * projectFactory.createProject(_, _, state, _, _, _, _) >> project
    
            state.createMutableModel(Stub(ClassLoaderScope), Stub(ClassLoaderScope))
    
            expect:
            rootState.mutableModel == rootProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/BuildScopeInMemoryCachingScriptClassCompiler.java

     */
    package org.gradle.groovy.scripts.internal;
    
    import groovy.lang.Script;
    import org.codehaus.groovy.ast.ClassNode;
    import org.gradle.api.Action;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.internal.Cast;
    
    import java.util.HashMap;
    import java.util.Map;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 16:35:08 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/DefaultInjectedClasspathPluginResolver.java

        private final ScriptClassPathResolver scriptClassPathResolver;
        private final ClassLoaderScope parentScope;
        private final PluginInspector pluginInspector;
        private final Lazy<PluginRegistry> pluginRegistry;
    
        public DefaultInjectedClasspathPluginResolver(
            ClassLoaderScope parentScope,
            ScriptClassPathResolver scriptClassPathResolver,
            FileCollectionFactory fileCollectionFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:19:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top