Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for createForProduction (0.56 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/KotlinParser.kt

        fun <T> withProject(f: Project.() -> T): T {
            val parentDisposable = Disposer.newDisposable()
            try {
                val project =
                    KotlinCoreEnvironment.createForProduction(
                        parentDisposable,
                        CompilerConfiguration().apply {
                            put(CLIConfigurationKeys.MESSAGE_COLLECTOR_KEY, TestMessageCollector)
                        },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/util/KotlinSourceParser.kt

                addJvmClasspathRoots(compilationClasspath)
                addKotlinSourceRoots(sourceRoots.map { it.canonicalPath })
            }
            val environment = KotlinCoreEnvironment.createForProduction(this, configuration, EnvironmentConfigFiles.JVM_CONFIG_FILES)
            return environment.getSourceFiles()
        }
    
        private
        fun configureKotlinCompilerIoForWindowsSupport() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinCompiler.kt

        return SystemProperties.getInstance().withSystemProperty(
            KOTLIN_COMPILER_ENVIRONMENT_KEEPALIVE_PROPERTY.property,
            "true"
        ) {
            KotlinCoreEnvironment.createForProduction(
                this,
                configuration,
                EnvironmentConfigFiles.JVM_CONFIG_FILES
            )
        }
    }
    
    
    internal
    fun disposeKotlinCompilerContext() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 31 08:46:17 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top