Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for 512g (0.27 sec)

  1. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MaximumHeapHelperTest.groovy

            osTotalMemory           | bitMode | server | expected
            MemoryAmount.of('512g') | 64      | true   | MemoryAmount.of('32g')
            MemoryAmount.of('8g')   | 64      | true   | MemoryAmount.of('2g')
            MemoryAmount.of('512g') | 64      | false  | MemoryAmount.of('1g')
            MemoryAmount.of('2g')   | 64      | false  | MemoryAmount.of('512m')
            MemoryAmount.of('8g')   | 32      | false  | MemoryAmount.of('1g')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/ResourceOperationTest.groovy

            operation.contentLength = 1024 * 10
            when:
            operation.logProcessedBytes(512 * 0)
            operation.logProcessedBytes(512 * 1)
            then:
            0 * context.progress(_)
    
            when:
            operation.logProcessedBytes(512 * 1)
            operation.logProcessedBytes(512 * 2)
            then:
            1 * context.progress(1024, 10240, "bytes", "1 KiB/10 KiB downloaded")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/config-inject/build.gradle

        <% if (dependencies) { dependencies.each { %>
            implementation "${it.shortNotation()}" <% } %>
        <% } %>
    }
    
    test {
        if (!JavaVersion.current().java8Compatible) {
            jvmArgs '-XX:MaxPermSize=512m'
        }
        jvmArgs '-XX:+HeapDumpOnOutOfMemoryError'
    }
    
    <% if (groovyProject) { %>
    apply plugin: 'groovy'
    dependencies {
        implementation 'org.codehaus:groovy:groovy-all:2.4.15'
    }
    <% } %>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. test/fixedbugs/issue5125.go

    // compiledir
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 5125: cyclic dependencies between types confuse
    // the hashability test during import.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 06:18:30 UTC 2013
    - 288 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/test-suite-configure-source-dir/groovy/build.gradle

    // tag::configure-test-task[]
    testing {
        suites {
            integrationTest {
                targets {
                    all { // <1>
                        testTask.configure {
                            maxHeapSize = '512m' // <2>
                        }
                    }
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGParallelBySuitesNotSupportedIntegrationTest.groovy

            given:
            buildFile << """
                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies { testImplementation 'org.testng:testng:5.12.1' }
                test { useTestNG { suiteThreadPoolSize = 5 } }
            """
    
            file("src/test/java/SimpleTest.java") << """
                import org.testng.annotations.Test;
    
                public class SimpleTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. test/heapsampling.go

    // run to run. To avoid flakes, this test performs multiple
    // experiments and only complains if all of them consistently fail.
    func main() {
    	// Sample at 16K instead of default 512K to exercise sampling more heavily.
    	runtime.MemProfileRate = 16 * 1024
    
    	if err := testInterleavedAllocations(); err != nil {
    		panic(err.Error())
    	}
    	if err := testSmallAllocations(); err != nil {
    		panic(err.Error())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 27 21:36:06 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/kts-project-with-source/build.gradle.kts

        testImplementation("junit:junit:4.13")
        runtimeOnly("com.googlecode:reflectasm:1.01")
    }
    
    (tasks.getByName("test") as Test).apply {
        if (!JavaVersion.current().isJava8Compatible) {
            jvmArgs("-XX:MaxPermSize=512m")
        }
        jvmArgs("-XX:+HeapDumpOnOutOfMemoryError")
    }
    
    task<DependencyReportTask>("dependencyReport") {
        outputs.upToDateWhen { false }
        outputFile = File(buildDir, "dependencies.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. test/peano.go

    	check(mul(zero(), gen(4)), 0)
    	check(mul(gen(3), add1(zero())), 3)
    	check(mul(add1(zero()), gen(4)), 4)
    	check(mul(gen(3), gen(4)), 12)
    
    	check(fact(zero()), 1)
    	check(fact(add1(zero())), 1)
    	check(fact(gen(5)), 120)
    }
    
    // -------------------------------------
    // Factorial
    
    var results = [...]int{
    	1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800,
    	39916800, 479001600,
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 30 19:39:18 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/KotlinDslFileContentGenerator.groovy

                maxParallelForks = ${config.maxParallelForks}
                setForkEvery(testForkEvery.toLong())
    
                if (!JavaVersion.current().isJava8Compatible) {
                    jvmArgs("-XX:MaxPermSize=512m")
                }
                jvmArgs("-XX:+HeapDumpOnOutOfMemoryError")
            }
    
            task<DependencyReportTask>("dependencyReport") {
                outputs.upToDateWhen { false }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top