Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ProgramId (0.26 sec)

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

        interface Host {
    
            fun cachedClassFor(
                programId: ProgramId
            ): CompiledScript?
    
            fun cache(
                specializedProgram: CompiledScript,
                programId: ProgramId
            )
    
            fun cachedDirFor(
                scriptHost: KotlinScriptHost<*>,
                programId: ProgramId,
                compilationClassPath: ClassPath,
                accessorsClassPath: 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/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                )
            }
    
            override fun cachedClassFor(
                programId: ProgramId
            ): CompiledScript? = classloadingCache.get(programId)
    
            override fun cache(
                specializedProgram: CompiledScript,
                programId: ProgramId
            ) {
                classloadingCache.put(
                    programId,
                    specializedProgram
                )
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

            val programHost = safeMockProgramHost {
                on { accessorsClassPathFor(scriptHost) } doReturn accessorsClassPath
            }
    
            val scriptTemplateId = "Project/TopLevel/stage2"
            val programId = ProgramId(scriptTemplateId, sourceHash, mock())
    
            private
            fun verifyStandardOutput(program: ExecutableProgram) {
                assertStandardOutputOf(expectedStage1Output) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

            Type.getType(ProgramId::class.java),
            Type.getType(ClassPath::class.java)
        )
    
        private
        val compileSecondStageOfDescriptor = Type.getMethodDescriptor(
            Type.getType(CompiledScript::class.java),
            stagedProgram,
            Type.getType(KotlinScriptHost::class.java),
            Type.getType(ProgramId::class.java),
            Type.getType(ProgramKind::class.java),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top