Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for Jvm (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            this(Jvm.current(), inferJvmOptions(fileCollectionFactory, ManagementFactory.getRuntimeMXBean().getInputArguments()));
        }
    
        protected CurrentProcess(JavaInfo jvm, JvmOptions effectiveJvmOptions) {
            this.jvm = jvm;
            this.effectiveJvmOptions = effectiveJvmOptions;
        }
    
        public JvmOptions getJvmOptions() {
            return effectiveJvmOptions;
        }
    
        public JavaInfo getJvm() {
            return jvm;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains a basic JVM plugin used to compile, test, and assemble Java source; often applied by other JVM plugins (though named java-base, jvm-base would be a more proper name)."
    
    errorprone {
        disabledChecks.addAll(
            "UnusedMethod", // 1 occurrences
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/build.gradle.kts

        implementation(project(":language-jvm"))
        implementation(project(":ivy"))
        implementation(project(":maven"))
        implementation(project(":model-core"))
        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
        implementation(project(":plugins-java-base"))
        implementation(project(":testing-jvm"))
        implementation(project(":test-suites-base"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/jvm/scala/build.gradle.kts

        api(project(":files"))
        api(project(":hashing"))
        api(project(":language-java"))
        api(project(":language-jvm"))
        api(project(":logging-api"))
        api(project(":model-core"))
        api(project(":platform-base"))
        api(project(":platform-jvm"))
        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":workers"))
        api(project(":build-process-services"))
    
        api(libs.groovy)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-groovy/build.gradle.kts

        api(project(":core"))
        api(project(":files"))
        api(project(":file-temp"))
        api(project(":jvm-services"))
        api(project(":language-java"))
        api(project(":language-jvm"))
        api(project(":problems-api"))
        api(project(":platform-base"))
        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":workers"))
        api(project(":worker-main"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            then:
            hasSystemProperty('mySystemProperty', 'defined in the client JVM')
        }
    
        def "Client JVM system properties appear in the build if withSystemProperties() is not called"() {
            when:
            runTask()
    
            then:
            hasSystemProperty('mySystemProperty', 'defined in the client JVM')
        }
    
        def "Client JVM system properties do not appear in the build if withSystemProperties() is called"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/build.gradle.kts

        implementation(project(":plugins-java-library"))
        implementation(project(":plugins-jvm-test-suite"))
        implementation(project(":plugin-use"))
        implementation(project(":process-services"))
        implementation(project(":publish"))
        implementation(project(":testing-jvm"))
        implementation(project(":toolchains-jvm"))
    
        implementation(libs.asm)
        implementation(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/build.gradle.kts

        testImplementation(testFixtures(project(":language-groovy")))
    
        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-jvm"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    strictCompile {
        ignoreRawTypes()
    }
    
    packageCycles {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-junit-platform/build.gradle.kts

    description = """Support classes used to run tests with the JUnit Platform testing framework.
    This project is separate from :testing-jvm-infrastructure since it requires junit-platform which itself requires Java 8+.
    This project should only be used by :testing-jvm-infrastructure, however it is not depended upon directly.
    Instead :testing-jvm-infrastructure loads classes from this project via reflection due to the above noted Java version issue.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 986 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/process/internal/CurrentProcessTest.groovy

    import org.gradle.internal.jvm.Jvm
    import spock.lang.Specification
    
    import static org.gradle.process.internal.CurrentProcess.inferJvmOptions
    
    class CurrentProcessTest extends Specification {
        def "default JVM is the current process JVM"() {
            def currentProcess = new CurrentProcess(Mock(FileCollectionFactory))
            expect:
            currentProcess.jvm == Jvm.current()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top