Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for max_memory (0.13 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.javadoc.Javadoc.xml

                <tr>
                    <td>destinationDir</td>
                    <td><literal><replaceable>${project.docsDir}</replaceable>/javadoc</literal></td>
                </tr>
                <tr>
                    <td>maxMemory</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>title</td>
                    <td><literal>project.reporting.apiDocTitle</literal></td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerJvmMemoryInfoSerializer.java

            @Override
            public JvmMemoryStatus read(Decoder decoder) throws EOFException, Exception {
                long committedMemory = decoder.readLong();
                long maxMemory = decoder.readLong();
                return new JvmMemoryStatusSnapshot(maxMemory, committedMemory);
            }
    
            @Override
            public void write(Encoder encoder, JvmMemoryStatus jvmMemoryStatus) throws Exception {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/HeapProportionalCacheSizer.java

    public class HeapProportionalCacheSizer {
        public static final String CACHE_RESERVED_SYSTEM_PROPERTY = "org.gradle.cache.reserved.mb";
        private static final int DEFAULT_SIZES_MAX_HEAP_MB = 910; // when -Xmx1024m, Runtime.maxMemory() returns about 910
        private static final int ASSUMED_USED_HEAP = 150; // assume that Gradle itself uses about 150MB heap
    
        private static final double MIN_RATIO = 0.2d;
    
        private final int maxHeapMB;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/mime/multipart/readmimeheader.go

    import (
    	"net/textproto"
    	_ "unsafe" // for go:linkname
    )
    
    // readMIMEHeader is defined in package [net/textproto].
    //
    //go:linkname readMIMEHeader net/textproto.readMIMEHeader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 457 bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/scaladoc/ScalaDocIntegrationTest.groovy

            succeeds "clean"
            withBuildCache().run scaladoc
    
            then:
            skipped scaladoc
        }
    
        def "scaladoc uses maxMemory"() {
            classes.baseline()
            buildScript(classes.buildScript())
            buildFile << """
                scaladoc.maxMemory = '234M'
            """
            when:
            succeeds scaladoc, "-i"
    
            then:
            // Looks like
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaDoc.java

        private ScalaDocOptions scalaDocOptions;
        private String title;
        private final Property<String> maxMemory;
        private final Property<JavaLauncher> javaLauncher;
        private final ConfigurableFileCollection compilationOutputs;
    
        public ScalaDoc() {
            ObjectFactory objectFactory = getObjectFactory();
            this.maxMemory = objectFactory.property(String.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultJvmMemoryInfo.java

    public class DefaultJvmMemoryInfo implements JvmMemoryInfo {
        private final long totalMemory; //this does not change
    
        public DefaultJvmMemoryInfo() {
            this.totalMemory = Runtime.getRuntime().maxMemory();
        }
    
        /**
         * Max memory that this process can commit in bytes. Always returns the same value because maximum memory is determined at jvm start.
         */
        long getMaxMemory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/net/textproto/reader.go

    		}
    
    		// Skip initial spaces in value.
    		value := string(bytes.TrimLeft(v, " \t"))
    
    		vv := m[key]
    		if vv == nil {
    			maxMemory -= int64(len(key))
    			maxMemory -= mapEntryOverhead
    		}
    		maxMemory -= int64(len(value))
    		if maxMemory < 0 {
    			return m, errMessageTooLarge
    		}
    		if vv == nil && len(strs) > 0 {
    			// More than likely this will be a single-element key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.scala.ScalaDoc.xml

                <tr>
                    <td>destinationDir</td>
                    <td><literal><replaceable>${project.docsDir}</replaceable>/scaladoc</literal></td>
                </tr>
                <tr>
                    <td>maxMemory</td>
                    <td><literal>null</literal></td>
                </tr>
                <tr>
                    <td>classpath</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                        <excludePackageNames>*.internal.*</excludePackageNames>
                        <verbose>true</verbose>
                        <minmemory>32m</minmemory>
                        <maxmemory>128m</maxmemory>
                        <failOnError>true</failOnError>
                        <includeDependencySources>true</includeDependencySources>
                        <dependencySourceIncludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
Back to top