Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for 512g (0.05 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MaximumHeapHelper.java

         */
        public long getDefaultMaximumHeapSize(long osTotalMemory) {
            if (isIbmJvm()) {
                long totalMemoryHalf = osTotalMemory / 2;
                long halfGB = MemoryAmount.parseNotation("512m");
                return totalMemoryHalf > halfGB ? halfGB : totalMemoryHalf;
            }
    
            long totalMemoryFourth = osTotalMemory / 4;
            long oneGB = MemoryAmount.parseNotation("1g");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. 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)
  3. testing/architecture-test/build.gradle.kts

            ruleFile = ruleStoreDir.file("stored.rules").asFile
        }
    
        test {
            // Looks like loading all the classes requires more than the default 512M
            maxHeapSize = "1g"
    
            // Only use one fork, so freezing doesn't have concurrency issues
            maxParallelForks = 1
    
            inputs.dir(ruleStoreDir)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/scala/zinc/groovy/build.gradle

        testImplementation 'junit:junit:4.13'
    }
    
    // tag::adjust-memory[]
    tasks.withType(ScalaCompile) {
        scalaCompileOptions.forkOptions.with {
            memoryMaximumSize = '1g'
            jvmArgs = ['-XX:MaxMetaspaceSize=512m']
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 479 bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/MD4.java

        /**
         * Number of bytes processed so far mod. 2 power of 64.
         */
        private long count;
    
        /**
         * 512 bits input buffer = 16 x 32-bit words holds until reaches 512 bits.
         */
        private byte[] buffer = new byte[BLOCK_LENGTH];
    
        /**
         * 512 bits work buffer = 16 x 32-bit words
         */
        private int[] X = new int[16];
    
    
    // Constructors
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/crypto/sha3/doc.go

    // 64 bytes, provides 256-bit security against all attacks.  The Keccak team
    // recommends it for most applications upgrading from SHA2-512. (NIST chose a
    // much stronger, but much slower, sponge instance for SHA3-512.)
    //
    // The SHA-3 functions are "drop-in" replacements for the SHA-2 functions.
    // They produce output of the same length, with the same security strengths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/workerApi/workerDaemon/kotlin/build.gradle.kts

            // Create a WorkQueue with process isolation
            val workQueue = workerExecutor.processIsolation() {
                // Configure the options for the forked process
                forkOptions {
                    maxHeapSize = "512m"
                    systemProperty("org.gradle.sample.showFileSize", "true")
                }
            }
    
            // Create and submit a unit of work for each file
            source.forEach { file ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslReferencePlugin.java

        }
    
        private static void setMemoryForWorkers(Project project) {
            project.getTasks().withType(DokkatooGenerateTask.class).configureEach(task -> {
                task.getWorkerMinHeapSize().set("512m");
                task.getWorkerMaxHeapSize().set("2g");
            });
        }
    
        private static void setStyling(Project project, GradleDocumentationExtension extension) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 14:00:14 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/workerDaemon/groovy/build.gradle

                // Configure the options for the forked process
                forkOptions { JavaForkOptions options ->
                    options.maxHeapSize = "512m"
                    options.systemProperty "org.gradle.sample.showFileSize", "true"
                }
            }
    
            // Create and submit a unit of work for each file
            source.each { file ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/shufflesharding/shufflesharding_test.go

    			"deckSize is impractically large",
    			1 << 27,
    			2,
    			fmt.Errorf("deckSize 134217728 is impractically large"),
    		},
    		{
    			"required entropy bits is greater than MaxHashBits",
    			512,
    			8,
    			fmt.Errorf("required entropy bits of deckSize 512 and handSize 8 is greater than 60"),
    		},
    		{
    			"deckSize: 1024 handSize: 6",
    			1024,
    			6,
    			nil,
    		},
    	}
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 25 06:44:08 UTC 2021
    - 6.7K bytes
    - Viewed (0)
Back to top