Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 64m (0.03 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

        }
    
        def "can include/exclude launcher options"() {
            spec.compileOptions.forkOptions.with {
                memoryInitialSize = "64m"
                memoryMaximumSize = "1g"
            }
    
            when:
            builder.includeLauncherOptions(true)
    
            then:
            builder.build() == ["-J-Xms64m", "-J-Xmx1g"] + defaultOptions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompilerIntegrationSpec.groovy

        def "can compile with custom heap settings"() {
            given:
            goodCode()
    
            and:
            buildFile << """
                compileJava.options.forkOptions.with {
                    memoryInitialSize = '64m'
                    memoryMaximumSize = '128m'
                }
            """
    
            when:
            succeeds("compileJava")
    
            then:
            output.contains(logStatement())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 01 01:34:12 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                                    workerExecutor.${workerMethod}({ config ->
                                        if (config instanceof ProcessWorkerSpec) {
                                            forkOptions.maxHeapSize = "64m"
                                            forkOptions(additionalForkOptions)
                                        }
                                        if (config instanceof ClassLoaderWorkerSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top