Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 116 for ClassLoaderScope (0.15 sec)

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

         *
         * @throws IllegalStateException if called before {@link #setBaseProjectClassLoaderScope(ClassLoaderScope)}
         */
        ClassLoaderScope baseProjectClassLoaderScope();
    
        /**
         * @throws IllegalStateException if called more than once
         */
        void setBaseProjectClassLoaderScope(ClassLoaderScope classLoaderScope);
    
        @Override
        StartParameterInternal getStartParameter();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/AbstractClassLoaderScope.java

        }
    
        /**
         * A string representing the path of this {@link ClassLoaderScope} in the {@link ClassLoaderScope} graph.
         */
        public String getPath() {
            return id.getPath();
        }
    
        @Override
        public ClassLoaderScope local(ClassPath classPath) {
            return immutable();
        }
    
        @Override
        public ClassLoaderScope export(ClassPath classPath) {
            return immutable();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultSettingsLoaderTest.groovy

        def buildLayoutFactory = Mock(BuildLayoutFactory)
        def settingsScript = Mock(ScriptSource)
        def startParameter = new StartParameterInternal()
        def classLoaderScope = Mock(ClassLoaderScope)
        def settingsProcessor = Mock(SettingsProcessor)
        def buildInCommand = Mock(BuiltInCommand)
        def settingsHandler = new DefaultSettingsLoader(settingsProcessor, buildLayoutFactory, [buildInCommand])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 14 20:50:34 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/DependenciesAccessors.java

    import org.gradle.api.internal.initialization.ClassLoaderScope;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.internal.classpath.ClassPath;
    
    import java.util.List;
    import java.util.Map;
    
    public interface DependenciesAccessors {
        void generateAccessors(List<VersionCatalogBuilder> builders, ClassLoaderScope classLoaderScope, Settings settings);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 28 14:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ImmutableClassLoaderScope.java

    public class ImmutableClassLoaderScope extends AbstractClassLoaderScope {
        private final ClassLoaderScope parent;
        private final ClassPath classPath;
        @Nullable
        private final HashCode classpathImplementationHash;
        private final ClassLoader localClassLoader;
    
        public ImmutableClassLoaderScope(
            ClassLoaderScopeIdentifier id,
            ClassLoaderScope parent,
            @Nullable ClassLoaderScopeOrigin origin,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

                initializer: (File) -> Unit
            ): File
    
            fun startCompilerOperation(
                description: String
            ): AutoCloseable
    
            fun compilationClassPathOf(
                classLoaderScope: ClassLoaderScope
            ): ClassPath
    
            /**
             * Provides an additional [ClassPath] to be used in the compilation of a top-level [Project] script
             * `buildscript` or `plugins` block.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/DefaultSettingsLoader.java

            GradleInternal gradle,
            StartParameter startParameter,
            SettingsLocation settingsLocation,
            ClassLoaderScope classLoaderScope
        ) {
            SettingsState state = settingsProcessor.process(gradle, settingsLocation, classLoaderScope, startParameter);
            validate(state.getSettings());
            return state;
        }
    
        private void validate(SettingsInternal settings) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 14 20:50:34 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/ClassLoaderScopeRegistryListener.java

    import org.gradle.internal.service.scopes.Scope;
    
    import javax.annotation.Nullable;
    
    
    /**
     * Listens to changes to the ClassLoaderScope tree.
     *
     * @see ClassLoaderScopeRegistry
     * @see ClassLoaderScope
     */
    @EventScope(Scope.UserHome.class)
    public interface ClassLoaderScopeRegistryListener {
    
        void childScopeCreated(ClassLoaderScopeId parentId, ClassLoaderScopeId childId, @Nullable ClassLoaderScopeOrigin origin);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptPluginFactory.kt

    ) : ScriptPluginFactory {
    
        override fun create(
            scriptSource: ScriptSource,
            scriptHandler: ScriptHandler,
            targetScope: ClassLoaderScope,
            baseScope: ClassLoaderScope,
            topLevelScript: Boolean
        ): ScriptPlugin =
    
            KotlinScriptPlugin(scriptSource) { target ->
    
                kotlinScriptEvaluator
                    .evaluate(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/SettingsFactory.java

            File settingsDir,
            ScriptSource settingsScript,
            GradleProperties gradleProperties,
            StartParameter startParameter,
            ClassLoaderScope baseClassLoaderScope
        ) {
            ClassLoaderScope classLoaderScope = baseClassLoaderScope.createChild("settings[" + gradle.getIdentityPath() + "]", null);
            SettingsServiceRegistryFactory serviceRegistryFactory = new SettingsServiceRegistryFactory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 11:21:54 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top