Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 309 for Jvm (0.04 sec)

  1. .teamcity/subprojects.json

        "crossVersionTests": false
      },
      {
        "name": "toolchains-jvm",
        "path": "platforms/jvm/toolchains-jvm",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": true
      },
      {
        "name": "toolchains-jvm-shared",
        "path": "platforms/jvm/toolchains-jvm-shared",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

    Compile classpath for source set 'main'.
    
    Attributes
        - org.gradle.category            = library
        - org.gradle.dependency.bundling = external
        - org.gradle.jvm.environment     = standard-jvm
        - org.gradle.jvm.version         = ${JavaVersion.current().majorVersion}
        - org.gradle.libraryelements     = classes
        - org.gradle.usage               = java-api
    Extended Configurations
        - compileOnly
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

            given:
            buildFile << """
                import org.gradle.internal.jvm.Jvm
    
                apply plugin: 'java'
    
                task execTask(type: Exec) {
                    dependsOn sourceSets.main.runtimeClasspath
                    def testFile = file("${'$'}buildDir/${'$'}name")
                    executable = Jvm.current().getJavaExecutable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. .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%")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  5. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[jvm_test_suite_plugin]]
    = The JVM Test Suite Plugin
    
    The JVM Test Suite plugin (plugin id: `jvm-test-suite`) provides a DSL and API to model multiple groups of automated tests into test suites in JVM-based projects.  Tests suites are intended to grouped by their purpose and can have separate dependencies and use different testing frameworks.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

                description = "Implements the declarative JVM DSL prototype"
    
                gradlePlugin {
                    plugins {
                        create("jvm-ecosystem") {
                            id = "org.gradle.experimental.jvm-ecosystem"
                            displayName = "JVM Ecosystem Experimental Declarative Plugin"
                            description = "Experimental declarative plugin for the JVM ecosystem"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplierTest.groovy

            providerFactory.environmentVariable("JDK16") >> Providers.of("/usr/lib/jvm/adoptopenjdk-16.jdk")
            providerFactory.environmentVariable("JDK17") >> Providers.of("/usr/lib/jvm/temurin-17.jdk")
            providerFactory.environmentVariable("JDKHOMES") >> Providers.of("/usr/lib/jvm")
            providerFactory.environmentVariable("OPEN_JDK16") >> Providers.of("adoptopenjdk-16.jdk")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

    import org.gradle.api.internal.tasks.compile.CommandLineJavaCompileSpec
    import org.gradle.api.internal.tasks.compile.ForkingJavaCompileSpec
    import org.gradle.internal.jvm.Jvm
    import org.gradle.jvm.toolchain.JavaCompiler
    import org.gradle.jvm.toolchain.JavaInstallationMetadata
    import org.gradle.jvm.toolchain.JavaLanguageVersion
    import org.gradle.test.fixtures.AbstractProjectBuilderSpec
    import org.gradle.util.TestUtil
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

    import org.gradle.api.JavaVersion
    import org.gradle.internal.jvm.Jvm
    import org.gradle.internal.jvm.inspection.JavaInstallationRegistry
    import org.gradle.internal.jvm.inspection.JvmInstallationMetadata
    import org.gradle.internal.jvm.inspection.JvmMetadataDetector
    import org.gradle.internal.jvm.inspection.JvmToolchainMetadata
    import org.gradle.internal.jvm.inspection.JvmVendor
    import org.gradle.internal.os.OperatingSystem
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AvailableJavaHomes
    import org.gradle.integtests.fixtures.executer.DocumentationUtils
    import org.gradle.integtests.fixtures.jvm.JavaToolchainFixture
    import org.gradle.internal.jvm.Jvm
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top