Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for ClassLoaderScope (0.21 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/initialization/SettingsEvaluatedCallbackFiringSettingsProcessor.java

    package org.gradle.initialization;
    
    import org.gradle.StartParameter;
    import org.gradle.api.internal.GradleInternal;
    import org.gradle.api.internal.SettingsInternal;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    
    public class SettingsEvaluatedCallbackFiringSettingsProcessor implements SettingsProcessor {
    
        private final SettingsProcessor delegate;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 11 09:02:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/SettingsProcessor.java

     */
    package org.gradle.initialization;
    
    import org.gradle.StartParameter;
    import org.gradle.api.internal.GradleInternal;
    import org.gradle.api.internal.SettingsInternal;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    
    /**
     * Responsible for locating, constructing, and configuring the {@link SettingsInternal} for a build.
     */
    public interface SettingsProcessor {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 11 09:02:18 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/initialization/ScriptEvaluatingSettingsProcessor.java

    package org.gradle.initialization;
    
    import org.gradle.StartParameter;
    import org.gradle.api.internal.GradleInternal;
    import org.gradle.api.internal.SettingsInternal;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    import org.gradle.api.internal.properties.GradleProperties;
    import org.gradle.configuration.ScriptPlugin;
    import org.gradle.configuration.ScriptPluginFactory;
    import org.gradle.groovy.scripts.TextResourceScriptSource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 19:42:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top