Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cFns (0.03 sec)

  1. src/runtime/mgcpacer.go

    	// allocated (cons) per unit of scan work completed (mark) in a GC
    	// cycle, divided by the CPU time spent on each activity.
    	//
    	// Updated at the end of each GC cycle, in endCycle.
    	consMark float64
    
    	// lastConsMark is the computed cons/mark value for the previous 4 GC
    	// cycles. Note that this is *not* the last value of consMark, but the
    	// measured cons/mark value in endCycle.
    	lastConsMark [4]float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                String passwd = cliRequest.commandLine.getOptionValue(CLIManager.ENCRYPT_MASTER_PASSWORD);
    
                if (passwd == null) {
                    Console cons = System.console();
                    char[] password = (cons == null) ? null : cons.readPassword("Master password: ");
                    if (password != null) {
                        // Cipher uses Strings
                        passwd = String.copyValueOf(password);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Gradle supports 2 different file formats for keyrings: a binary format (`.gpg` file) and a plain text format (`.keys`), also known as ASCII-armored format.
    
    There are pros and cons for each of the formats: the binary format is more compact and can be updated directly via GPG commands, but is completely opaque (binary).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top