Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for ClassLoaderScope (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/configuration/ScriptPluginFactorySelector.java

            this.scriptSourceListener = scriptSourceListener;
        }
    
        @Override
        public ScriptPlugin create(
            ScriptSource scriptSource, ScriptHandler scriptHandler, ClassLoaderScope targetScope,
            ClassLoaderScope baseScope, boolean topLevelScript
        ) {
            scriptSourceListener.scriptSourceObserved(scriptSource);
            ScriptPlugin scriptPlugin = scriptPluginFactoryFor(scriptSource.getFileName())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/InterpreterTest.kt

            }
            val parentClassLoader = mock<ClassLoader>()
            val baseScope = mock<ClassLoaderScope> {
                on { exportClassLoader } doReturn parentClassLoader
            }
            val parentScope = mock<ClassLoaderScope>()
            val targetScopeExportClassLoader = mock<ClassLoader>()
            val targetScope = mock<ClassLoaderScope> {
                on { parent } doReturn parentScope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/DeclarativeKotlinScriptEvaluator.kt

    package org.gradle.internal.declarativedsl.evaluator
    
    import org.gradle.api.Project
    import org.gradle.api.initialization.Settings
    import org.gradle.api.internal.SettingsInternal
    import org.gradle.api.internal.initialization.ClassLoaderScope
    import org.gradle.declarative.dsl.evaluation.InterpretationSequence
    import org.gradle.groovy.scripts.ScriptSource
    import org.gradle.internal.declarativedsl.conventions.softwareTypeRegistryBasedConventionRegistrar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:40 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top