Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for startCompilerOperation (0.22 sec)

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

                }
            }
    
            val host = mock<Interpreter.Host> {
    
                on { serviceRegistryFor(any(), any()) } doReturn mockServiceRegistry
    
                on { startCompilerOperation(any()) } doReturn compilerOperation
    
                on { runCompileBuildOperation(any(), any(), any()) } doAnswer { it.getArgument<() -> String>(2)() }
    
                on {
                    cachedDirFor(
    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/provider/KotlinScriptEvaluator.kt

            }
    
            override fun setupEmbeddedKotlinFor(scriptHost: KotlinScriptHost<*>) {
                setupEmbeddedKotlinForBuildscript(scriptHost.scriptHandler)
            }
    
            override fun startCompilerOperation(description: String): AutoCloseable {
                val operationDescription = "Compiling $description"
                val operation = progressLoggerFactory
                    .newOperation(KotlinScriptEvaluator::class.java)
    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