Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for jvm (0.12 sec)

  1. .teamcity/src/main/kotlin/common/Jvm.kt

     * limitations under the License.
     */
    
    package common
    
    interface Jvm {
        val version: JvmVersion
        val vendor: JvmVendor
    }
    
    data class DefaultJvm(
        override val version: JvmVersion,
        override val vendor: JvmVendor
    ) : Jvm
    
    object BuildToolBuildJvm : Jvm {
        override val version: JvmVersion
            get() = JvmVersion.java11
        override val vendor: JvmVendor
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Nov 07 06:56:20 GMT 2022
    - 986 bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/extensions.kt

                    reverse = false
                    stopBuildOnFailure = true
                }
            }
        }
    }
    
    fun javaHome(jvm: Jvm, os: Os, arch: Arch = Arch.AMD64) = "%${os.name.lowercase()}.${jvm.version}.${jvm.vendor}.${arch.suffix}%"
    
    fun BuildType.paramsForBuildToolBuild(buildJvm: Jvm = BuildToolBuildJvm, os: Os, arch: Arch = Arch.AMD64) {
        params {
            param("env.BOT_TEAMCITY_GITHUB_TOKEN", "%github.bot-teamcity.token%")
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  3. .space/CODEOWNERS

    /plugins/imports-dumper/ "Kotlin Compiler Core"
    /plugins/jvm-abi-gen/ "Kotlin JVM"
    /plugins/kapt3/ "Kotlin Compiler Core"
    /plugins/kapt3/kapt3-compiler/test/ "Kotlin Compiler Core" "Kotlin JVM"
    /plugins/kapt3/kapt3-compiler/testData/ "Kotlin Compiler Core" "Kotlin JVM"
    /plugins/kapt3/kapt3-compiler/tests-gen/ "Kotlin Compiler Core" "Kotlin JVM"
    /plugins/kapt4/ "Kotlin JVM"
    /plugins/kotlinx-serialization/ Sergey.Shanshin Leonid.Startsev
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 25 19:58:12 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/util/KotlinSourceParser.kt

    import org.gradle.internal.jvm.Jvm
    import org.jetbrains.kotlin.cli.common.CLIConfigurationKeys
    import org.jetbrains.kotlin.cli.common.config.addKotlinSourceRoots
    import org.jetbrains.kotlin.cli.common.messages.MessageCollector
    import org.jetbrains.kotlin.cli.common.messages.MessageRenderer
    import org.jetbrains.kotlin.cli.common.messages.PrintingMessageCollector
    import org.jetbrains.kotlin.cli.jvm.compiler.EnvironmentConfigFiles
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/build.gradle.kts

        implementation(project(":compiler:backend"))
        implementation(project(":compiler:backend-common"))
        implementation(project(":compiler:backend.common.jvm"))
        implementation(project(":compiler:backend.jvm"))
        implementation(project(":compiler:backend.jvm.entrypoint"))
    
        testApi(platform(libs.junit.bom))
        testImplementation(libs.junit.jupiter.api)
        testRuntimeOnly(libs.junit.jupiter.engine)
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Mar 28 16:10:07 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  6. okhttp-android/src/main/baseline-prof.txt

    Lkotlin/jvm/functions/Function12;
    Lkotlin/jvm/functions/Function13;
    Lkotlin/jvm/functions/Function14;
    Lkotlin/jvm/functions/Function15;
    Lkotlin/jvm/functions/Function16;
    Lkotlin/jvm/functions/Function17;
    Lkotlin/jvm/functions/Function18;
    Lkotlin/jvm/functions/Function19;
    Lkotlin/jvm/functions/Function1;
    Lkotlin/jvm/functions/Function20;
    Lkotlin/jvm/functions/Function21;
    Lkotlin/jvm/functions/Function22;
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  7. architecture/platforms.md

        software --> core
    
        subgraph jvm["jvm platform"]
        end
        style jvm fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
        jvm --> core
        jvm --> software
    
        subgraph extensibility["extensibility platform"]
        end
        style extensibility fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;
        extensibility --> core
        extensibility --> jvm
    
        subgraph native["native platform"]
        end
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild/startscript/tasks/GradleStartScriptGenerator.kt

                    line.startsWith("DEFAULT_JVM_OPTS='") && line.endsWith('\'') -> {
                        ++replacementsCount
                        // Use shell's string concatenation: '...'"..." glues contents of quoted and double-quoted strings together.
                        // The result would be something like DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'" \"-javaagent:$APP_HOME/lib/agents/foobar.jar\""
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Fri Feb 24 10:25:27 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-compiler-configuration.kt

                )
            )
        )
    
        put(JVMConfigurationKeys.SAM_CONVERSIONS, JvmClosureGenerationScheme.CLASS)
        put(JVMConfigurationKeys.PARAMETERS_METADATA, true)
        put(JVMConfigurationKeys.JVM_TARGET, org.jetbrains.kotlin.config.JvmTarget.JVM_1_8)
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Thu Oct 26 19:59:57 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  10. architecture/readme.md

    software --> core
    
    subgraph jvm["jvm platform"]
    end
    style jvm fill:#c2e0f4,stroke:#3498db,stroke-width:2px;
    jvm --> core
    jvm --> software
    
    subgraph extensibility["extensibility platform"]
    end
    style extensibility fill:#c2e0f4,stroke:#3498db,stroke-width:2px;
    extensibility --> core
    extensibility --> jvm
    
    subgraph native["native platform"]
    end
    Plain Text
    - Registered: Wed Feb 21 11:36:11 GMT 2024
    - Last Modified: Wed Feb 14 20:23:24 GMT 2024
    - 1.5K bytes
    - Viewed (0)
Back to top