Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for EnclosingSourceSet (0.16 sec)

  1. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

    private
    fun Project.findSourceSetOf(file: File): EnclosingSourceSet? =
        sourceSets?.find { file in it.allSource }?.let {
            EnclosingSourceSet(this, it)
        }
    
    
    private
    val Project.sourceSets
        get() = extensions.findByType(typeOf<SourceSetContainer>())
    
    
    private
    fun precompiledScriptPluginModelBuilder(
        scriptFile: File,
        enclosingSourceSet: EnclosingSourceSet,
        modelRequestProject: Project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top