Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 238 for 1024m (0.04 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPerformanceMonitoringSoakTest.groovy

            setupTenuredHeapLeak(leakRate)
            then:
            daemonIsExpiredEagerly(maxBuilds, heapSize)
    
            where:
            maxBuilds | heapSize | leakRate
            45        | "200m"   | 600
            40        | "1024m"  | 4000
        }
    
        private boolean daemonIsExpiredEagerly(int maxBuilds, String heapSize) {
            def dataFile = file("stats")
            int newDaemons = 0
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

        }
    
        def "maxHeapSizeIsUpdatedWhenSetUsingJvmArgs"() {
            options.maxHeapSize = '1g'
            options.jvmArgs('-Xmx1024m')
    
            assertThat(options.maxHeapSize, equalTo('1024m'))
    
            options.allJvmArgs = []
    
            assertThat(options.maxHeapSize, nullValue())
    
            options.allJvmArgs = ['-Xmx1g']
    
            assertThat(options.maxHeapSize, equalTo('1g'))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractAndroidSantaTrackerSmokeTest.groovy

                .withTestKitDir(homeDir)
                .forwardOutput()
            if (JavaVersion.current().isJava9Compatible()) {
                runner.withJvmArguments(
                    "-Xmx8g", "-XX:MaxMetaspaceSize=1024m", "-XX:+HeapDumpOnOutOfMemoryError",
                    "--add-opens", "jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED",
                    "--add-opens", "jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

                ) as DefaultGradleRunner
            gradleRunner.withJvmArguments(["-Xmx8g", "-XX:MaxMetaspaceSize=1024m", "-XX:+HeapDumpOnOutOfMemoryError"])
            return new SmokeTestGradleRunner(gradleRunner)
                .withBuildOperationTracing(file("operations").absolutePath)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    	table := []struct {
    		in     string
    		expect string
    	}{
    		{"1Ki", "1Ki"},
    		{"1Mi", "1Mi"},
    		{"1Gi", "1Gi"},
    		{"1024Mi", "1Gi"},
    		{"1000M", "1G"},
    		{".001Ki", "1024m"},
    		{".000001Ki", "1024u"},
    		{".000000001Ki", "1024n"},
    		{".000000000001Ki", "2n"},
    	}
    
    	for _, item := range table {
    		q, err := ParseQuantity(item.in)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. pkg/volume/emptydir/empty_dir_test.go

    			},
    			{
    				Device: "/dev/hugepages",
    				Type:   "hugetlbfs",
    				Path:   "/mnt/hugepages-1Gi",
    				Opts:   []string{"rw", "relatime", "pagesize=1024M"},
    			},
    			{
    				Device: "/dev/hugepages",
    				Type:   "hugetlbfs",
    				Path:   "/mnt/noopt",
    				Opts:   []string{"rw", "relatime"},
    			},
    			{
    				Device: "/dev/hugepages",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/NumberUtilTest.groovy

            1024L**4 - 1      | '1023.9 GiB'
    
            1024L**4          | '1 TiB'
            1024L**4 + 1      | '1 TiB'
            1024L**4 * 21     | '21 TiB'
            1024L**5 - 1      | '1023.9 TiB'
    
            1024L**5          | '1 PiB'
            1024L**5 + 1      | '1 PiB'
            1024L**5 * 5      | '5 PiB'
            1024L**6 - 1      | '1023.9 PiB'
    
            1024L**6          | '1 EiB'
            1024L**6 + 1      | '1 EiB'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            if (value < 1024) {
                format = "0";
            } else if (value < 1024L * 1024L) {
                target /= 1024;
                unit = "K";
            } else if (value < 1024L * 1024L * 1024L) {
                target /= 1024;
                target /= 1024;
                unit = "M";
            } else if (value < 1024L * 1024L * 1024L * 1024L) {
                target /= 1024;
                target /= 1024;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue9400/asm_mips64x.s

    	// will clobber the test pattern created by the caller
    	ADDV	$(1024*8), R29
    
    	// Ask signaller to setgid
    	MOVW	$1, R1
    	SYNC
    	MOVW	R1, ·Baton(SB)
    	SYNC
    
    	// Wait for setgid completion
    loop:
    	SYNC
    	MOVW	·Baton(SB), R1
    	OR	R2, R2, R2	// hint that we're in a spin loop
    	BNE	R1, loop
    	SYNC
    
    	// Restore stack
    	ADDV	$(-1024*8), R29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 691 bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java

    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    
    /**
     * @author shinsuke
     *
     */
    public class ContentLengthHelper {
    
        protected long defaultMaxLength = 10L * 1024L * 1024L;// 10M
    
        protected Map<String, Long> maxLengthMap = new HashMap<>();
    
        public void addMaxLength(final String mimeType, final long maxLength) {
            if (StringUtil.isBlank(mimeType)) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top