Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cachedDirFor (0.39 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/InterpreterTest.kt

                on { runCompileBuildOperation(any(), any(), any()) } doAnswer { it.getArgument<() -> String>(2)() }
    
                on {
                    cachedDirFor(
                        any(),
                        eq(stage1ProgramId),
                        same(testRuntimeClassPath),
                        same(accessorsClassPath),
                        any()
                    )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

                programId: ProgramId
            ): CompiledScript?
    
            fun cache(
                specializedProgram: CompiledScript,
                programId: ProgramId
            )
    
            fun cachedDirFor(
                scriptHost: KotlinScriptHost<*>,
                programId: ProgramId,
                compilationClassPath: ClassPath,
                accessorsClassPath: ClassPath,
                initializer: (File) -> Unit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/SimplifiedKotlinScriptEvaluator.kt

            override fun cachedClassFor(programId: ProgramId): CompiledScript? =
                null
    
            override fun cache(specializedProgram: CompiledScript, programId: ProgramId) = Unit
    
            override fun cachedDirFor(
                scriptHost: KotlinScriptHost<*>,
                programId: ProgramId,
                compilationClassPath: ClassPath,
                accessorsClassPath: ClassPath,
                initializer: (File) -> Unit
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                programId: ProgramId
            ) {
                classloadingCache.put(
                    programId,
                    specializedProgram
                )
            }
    
            override fun cachedDirFor(
                scriptHost: KotlinScriptHost<*>,
                programId: ProgramId,
                compilationClassPath: ClassPath,
                accessorsClassPath: ClassPath,
                initializer: (File) -> Unit
    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