Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for 512g (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go

    	SYS_SETFSUID                = 5120
    	SYS_SETFSGID                = 5121
    	SYS_GETSID                  = 5122
    	SYS_CAPGET                  = 5123
    	SYS_CAPSET                  = 5124
    	SYS_RT_SIGPENDING           = 5125
    	SYS_RT_SIGTIMEDWAIT         = 5126
    	SYS_RT_SIGQUEUEINFO         = 5127
    	SYS_RT_SIGSUSPEND           = 5128
    	SYS_SIGALTSTACK             = 5129
    	SYS_UTIME                   = 5130
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    	SYS_SETFSUID                = 5120
    	SYS_SETFSGID                = 5121
    	SYS_GETSID                  = 5122
    	SYS_CAPGET                  = 5123
    	SYS_CAPSET                  = 5124
    	SYS_RT_SIGPENDING           = 5125
    	SYS_RT_SIGTIMEDWAIT         = 5126
    	SYS_RT_SIGQUEUEINFO         = 5127
    	SYS_RT_SIGSUSPEND           = 5128
    	SYS_SIGALTSTACK             = 5129
    	SYS_UTIME                   = 5130
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K 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. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

    </suite>"""
    
            when: succeeds "test"
    
            then:
            if (VersionNumber.parse(version.toString()) > VersionNumber.parse('5.12.1')) {
                // Broken in 5.12.1, fixed in 5.13
                assert containsLinesThatMatch(result.output,
                    "Gradle Test Executor \\d+ -> static out",
                    "Gradle Test Executor \\d+ -> static err",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/math/big/int_test.go

    }
    
    func BenchmarkBitset(b *testing.B) {
    	z := new(Int)
    	z.SetBit(z, 512, 1)
    	b.ResetTimer()
    	for i := b.N - 1; i >= 0; i-- {
    		z.SetBit(z, i&512, 1)
    	}
    }
    
    func BenchmarkBitsetNeg(b *testing.B) {
    	z := NewInt(-1)
    	z.SetBit(z, 512, 0)
    	b.ResetTimer()
    	for i := b.N - 1; i >= 0; i-- {
    		z.SetBit(z, i&512, 0)
    	}
    }
    
    func BenchmarkBitsetOrig(b *testing.B) {
    	z := new(Int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K 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. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

    performanceTest.registerTestProject("ktsManyProjects", KtsProjectGeneratorTask) {
        projects = 100
        sourceFiles = 0
        daemonMemory = '512m'
    }
    
    performanceTest.registerTestProject("ktsSmall", KtsProjectGeneratorTask) {
        daemonMemory = '512m'
    }
    
    // === Native Software Model ===
    performanceTest.registerTestProject("smallNative", NativeProjectGeneratorTask) {
        projects = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K 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. 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)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    ----
    
    To increase the limit to e.g. 512K watches run the following:
    
    [source,bash]
    ----
    echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
    ----
    [source,bash]
    ----
    sudo sysctl -p --system
    ----
    
    Each used inotify watch takes up to 1KB of memory.
    Assuming inotify uses all the 512K watches then file system watching could use up to 500MB.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top