Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for registerProject (0.63 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuild.kt

    
    interface ConfigurationCacheBuild {
    
        val gradle: GradleInternal
    
        val state: BuildState
    
        fun registerRootProject(rootProjectName: String, projectDir: File, buildDir: File)
    
        fun registerProject(projectPath: Path, dir: File, buildDir: File)
    
        fun getProject(path: String): ProjectInternal
    
        // Creates all registered projects for this build
        fun createProjects()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

                descriptor.name = rootProjectName
                descriptor.projectDir = projectDir
                buildDirs[Path.ROOT] = buildDir
            }
    
            override fun registerProject(projectPath: Path, dir: File, buildDir: File) {
                val name = projectPath.name
                require(name != null)
                // Adds the descriptor to the registry as a side effect
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top