Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 235 for ProjectInternal (0.35 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/InstantiatingBuildLoaderTest.groovy

            new DefaultProjectDescriptor(parent, name, projectDir, projectDescriptorRegistry, TestFiles.resolver(rootProjectDir))
        }
    
        ProjectInternal project(ProjectDescriptor descriptor, ProjectInternal parent) {
            ProjectInternal project
            if (parent) {
                project = TestUtil.createChildProject(parent, descriptor.name, descriptor.projectDir)
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildLogger.java

            if (logger.isInfoEnabled()) {
                ProjectInternal projectInternal = (ProjectInternal) gradle.getRootProject();
                logger.info("Projects loaded. Root project using {}.",
                    projectInternal.getBuildScriptSource().getDisplayName());
                logger.info("Included projects: {}", projectInternal.getAllprojects());
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 04 18:57:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectBackedPropertyHost.java

    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.provider.PropertyHost;
    import org.gradle.internal.state.ModelObject;
    
    import javax.annotation.Nullable;
    
    class ProjectBackedPropertyHost implements PropertyHost {
        private final ProjectInternal project;
    
        public ProjectBackedPropertyHost(ProjectInternal project) {
            this.project = project;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 09 21:55:13 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

                (task.project as? ProjectInternal)?.takeIf { project -> !project.isReferrerProject }
            }
            reportCrossProjectTaskAccess(otherProjects)
        }
    
        private
        val Project.isReferrerProject: Boolean
            get() = this is ProjectInternal && identityPath == referrerProject.identityPath
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/serialize/ProjectProvider.kt

     */
    
    package org.gradle.internal.cc.base.serialize
    
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.internal.serialize.graph.ReadContext
    import org.gradle.internal.serialize.graph.getSingletonProperty
    
    
    typealias ProjectProvider = (String) -> ProjectInternal
    
    
    fun ReadContext.getProject(path: String): ProjectInternal =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 1015 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultProjectComponentSelector.java

            ProjectInternal projectInternal = (ProjectInternal) project;
            ProjectComponentIdentifier projectComponentIdentifier = projectInternal.getOwner().getComponentIdentifier();
            return new DefaultProjectComponentSelector(projectComponentIdentifier.getBuild(), projectInternal.getIdentityPath(), projectInternal.getProjectPath(), project.getName(), attributes, requestedCapabilities);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingClosure.kt

    import org.gradle.api.internal.project.CrossProjectModelAccess
    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.execution.taskgraph.TaskExecutionGraphInternal
    import java.util.Objects
    
    
    class CrossProjectModelAccessTrackingClosure<T>(
        private val delegate: Closure<T>,
        private val referrerProject: ProjectInternal,
        private val crossProjectModelAccess: CrossProjectModelAccess
    ) : Closure<T>(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/DefaultKotlinScript.kt

        override fun getLogging(): LoggingManager = project.logging
        override fun getFileOperations(): FileOperations = projectInternal().fileOperations
        override fun getProcessOperations(): ProcessOperations = projectInternal().processOperations
        fun projectInternal() = (project as ProjectInternal)
    }
    
    
    internal
    fun defaultKotlinScriptHostForSettings(settings: Settings): DefaultKotlinScript.Host =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 22:41:55 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/ProjectExtensions.kt

    import org.gradle.api.Project
    
    import org.gradle.api.internal.project.ProjectInternal
    
    import java.io.File
    
    
    inline fun <reified T : Any> Project.serviceOf(): T =
        (this as ProjectInternal).services.get()
    
    
    internal
    fun serviceRegistryOf(project: Project) =
        (project as ProjectInternal).services
    
    
    fun isGradleKotlinDslJar(file: File) =
        isGradleKotlinDslJarName(file.name)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 00:04:38 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/configuration/ProjectScriptTarget.java

    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.internal.project.ProjectScript;
    import org.gradle.groovy.scripts.BasicScript;
    import org.gradle.groovy.scripts.internal.Permits;
    
    public class ProjectScriptTarget implements ScriptTarget {
        private final ProjectInternal target;
    
        public ProjectScriptTarget(ProjectInternal target) {
            this.target = target;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 09 11:18:20 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top