Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for 64mb (0.03 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    // contained on the range described by a string. It can recognize
    // strings of the form:
    // "32kb" -- matches values == 32kb
    // ":64kb" -- matches values <= 64kb
    // "4mb:" -- matches values >= 4mb
    // "12kb:64mb" -- matches values between 12kb and 64mb (both included).
    func parseTagFilterRange(filter string) func(int64, string) bool {
    	ranges := tagFilterRangeRx.FindAllStringSubmatch(filter, 2)
    	if len(ranges) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            return effectiveJvmOptions;
        }
    
        public JavaInfo getJvm() {
            return jvm;
        }
    
        public boolean isLowMemoryProcess() {
            return Runtime.getRuntime().maxMemory() <= 64L * 1024 * 1024; // 64MB is our default for a launcher process
        }
    
        static JvmOptions inferJvmOptions(FileCollectionFactory fileCollectionFactory, List<String> arguments) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. internal/s3select/progress.go

    			pbzip2.BZConcurrency((runtime.GOMAXPROCS(0)+1)/2),
    			pbzip2.BZConcurrencyPool(bz2Limiter),
    		))
    		pr.closer = &nopReadCloser{fn: cancel}
    	case zstdType:
    		// Set a max window of 64MB. More than reasonable.
    		zr, err := zstd.NewReader(scannedReader, zstd.WithDecoderConcurrency(2), zstd.WithDecoderMaxWindow(64<<20))
    		if err != nil {
    			return nil, errInvalidCompression(err, compType)
    		}
    		r = zr
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Oct 18 15:44:36 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	//       */64-bit         48        64MB           1    4M (32MB)
    	// windows/64-bit         48         4MB          64    1M  (8MB)
    	//      ios/arm64         33         4MB           1  2048  (8KB)
    	//       */32-bit         32         4MB           1  1024  (4KB)
    	//     */mips(le)         31         4MB           1   512  (2KB)
    
    	// heapArenaBytes is the size of a heap arena. The heap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    
    == Changes in detail
    
    [[rel5.0:default_memory_settings]]
    === [5.0] Default memory settings changed
    
    The command line client now starts with 64MB of heap instead of 1GB.
    This may affect builds running directly inside the client VM using `--no-daemon` mode.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  6. hack/testdata/sorted-pods/sorted-pod1.yaml

      creationTimestamp: "2018-08-30T14:10:58Z"
      labels:
        name: sorted-pod3-label
    spec:
      containers:
      - name: kubernetes-pause2
        image: registry.k8s.io/pause:3.10
        resources:
          requests:
            memory: "64Mi"
            cpu: "250m"
          limits:
            memory: "128Mi"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 355 bytes
    - Viewed (0)
  7. guava-tests/benchmark/com/google/common/primitives/UnsignedBytesBenchmark.java

      private byte[] ba1;
      private byte[] ba2;
      private byte[] ba3;
      private byte[] ba4;
      private Comparator<byte[]> javaImpl;
      private Comparator<byte[]> unsafeImpl;
    
      // 4, 8, 64, 1K, 1M, 1M (unaligned), 64M, 64M (unaligned)
      // @Param({"4", "8", "64", "1024", "1048576", "1048577", "6710884", "6710883"})
      @Param({"4", "8", "64", "1024"})
      private int length;
    
      @BeforeExperiment
      void setUp() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/antlr/useAntlrPlugin/groovy/build.gradle

    // end::declare-dependency[]
        testImplementation 'junit:junit:4.13'
    // tag::declare-dependency[]
    }
    // end::declare-dependency[]
    
    // tag::generate-grammar-settings[]
    generateGrammarSource {
        maxHeapSize = "64m"
        arguments += ["-visitor", "-long-messages"]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 569 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/antlr/useAntlrPlugin/kotlin/build.gradle.kts

    // end::declare-dependency[]
        testImplementation("junit:junit:4.13")
    // tag::declare-dependency[]
    }
    // end::declare-dependency[]
    
    // tag::generate-grammar-settings[]
    tasks.generateGrammarSource {
        maxHeapSize = "64m"
        arguments = arguments + listOf("-visitor", "-long-messages")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 592 bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

            then:
            options.systemProperties == [key: 'value']
        }
    
        def "allJvmArgs includes minHeapSize"() {
            when:
            options.minHeapSize = '64m'
            options.jvmArgs('arg1')
    
            then:
            options.allJvmArgs == ['arg1', '-Xms64m', fileEncodingProperty(), *localeProperties()]
        }
    
        def "allJvmArgs includes maxHeapSize"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top