Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for stage1BlocksAccessorsFor (0.29 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

             *
             * The [ClassPath] is assumed not to influence the cache key of the script by itself as it should
             * already be implied by [ProgramId.parentClassLoader].
             */
            fun stage1BlocksAccessorsFor(
                scriptHost: KotlinScriptHost<*>
            ): ClassPath
    
            fun accessorsClassPathFor(
                scriptHost: KotlinScriptHost<*>
            ): ClassPath
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/SimplifiedKotlinScriptEvaluator.kt

                initializer(cacheDir)
            }
    
            override fun compilationClassPathOf(classLoaderScope: ClassLoaderScope): ClassPath =
                scriptCompilationClassPath
    
            override fun stage1BlocksAccessorsFor(scriptHost: KotlinScriptHost<*>): ClassPath =
                ClassPath.EMPTY
    
            override fun accessorsClassPathFor(scriptHost: KotlinScriptHost<*>): ClassPath =
                ClassPath.EMPTY
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

        ) : Interpreter.Host {
    
            override val compilerOptions: KotlinCompilerOptions =
                kotlinCompilerOptions(gradleProperties)
    
            override fun stage1BlocksAccessorsFor(scriptHost: KotlinScriptHost<*>): ClassPath =
                (scriptHost.target as? ProjectInternal)
                    ?.let {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top