Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 625 for verified$ (0.19 sec)

  1. src/crypto/ed25519/ed25519.go

    	PublicKeySize = 32
    	// PrivateKeySize is the size, in bytes, of private keys as used in this package.
    	PrivateKeySize = 64
    	// SignatureSize is the size, in bytes, of signatures generated and verified by this package.
    	SignatureSize = 64
    	// SeedSize is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032.
    	SeedSize = 32
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. cmd/erasure-healing-common.go

    			dataErrsByDisk[disk][part] = dataErrsByPart[part][disk]
    		}
    	}
    
    	for i, onlineDisk := range onlineDisks {
    		if metaErrs[i] == nil && !hasPartErr(dataErrsByDisk[i]) {
    			// All parts verified, mark it as all data available.
    			availableDisks[i] = onlineDisk
    		} else {
    			// upon errors just make that disk's fileinfo invalid
    			partsMetadata[i] = FileInfo{}
    		}
    	}
    
    	return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication.go

    			"The client ID for the OpenID Connect client, must be set if oidc-issuer-url is set.")
    
    		fs.StringVar(&o.OIDC.CAFile, oidcCAFileFlag, o.OIDC.CAFile, ""+
    			"If set, the OpenID server's certificate will be verified by one of the authorities "+
    			"in the oidc-ca-file, otherwise the host's root CA set will be used.")
    
    		fs.StringVar(&o.OIDC.UsernameClaim, oidcUsernameClaimFlag, "sub", ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/dom_test.go

    			t.Errorf("expected %s as dominator of %s, found %s", d, n, blockNames[domNode])
    		default:
    			t.Fatal("unexpected dominator condition")
    		}
    	}
    
    	for id, d := range calcDom {
    		// If nil, we've already verified it
    		if d == nil {
    			continue
    		}
    		for _, b := range fut.blocks {
    			if int(b.ID) == id {
    				t.Errorf("unexpected dominator of %s for %s", blockNames[d], blockNames[b])
    			}
    		}
    	}
    
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Gradle won't verify either checksums or signatures of plugins which use their own HTTP clients.
    Only plugins which use the infrastructure provided by Gradle for performing requests will see their requests verified.
    --
    
    [[sec:verification-update]]
    === Using generation for incremental updates
    
    The verification file generated by Gradle has a strict ordering for all its content.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  6. src/crypto/tls/ticket.go

    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				// We elide the first certificate because it's always the leaf.
    				if len(chain) == 0 {
    					b.SetError(errors.New("tls: internal error: empty verified chain"))
    					return
    				}
    				for _, cert := range chain[1:] {
    					b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    						b.AddBytes(cert.Raw)
    					})
    				}
    			})
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    Typically, CI builds above a certain size include parallel sections to utilize multiple agents. With parallel pipelines you can measure the wall-clock time it takes for a set of changes to go from having been pushed to version control to being built, verified and deployed. The build cache's effect in this case can be measured in the reduction of the time developers have to wait for feedback from CI.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/addons/dns/dns.go

    		// If migration is required, try and migrate the Corefile
    		if err := migrateCoreDNSCorefile(client, coreDNSConfigMap, corefile, currentInstalledCoreDNSVersion); err != nil {
    			// Errors in Corefile Migration is verified during preflight checks. This part will be executed when a user has chosen
    			// to ignore preflight check errors.
    			canMigrateCorefile = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    In our code, shown below, we only use one method from the beanutils library, `PropertyUtils.setSimpleProperty()`.
    Using this method for existing setters does not require any functionality from `commons-collections` as we verified through test coverage.
    
    .Using a utility from the beanutils library
    ====
    include::sample[dir="snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/groovy",files="src/main/java/Main.java"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     *   <li>Before the lock is acquired, the lock is checked against the current set of acquired
     *       locks---to each of the acquired locks, an edge from the soon-to-be-acquired lock is either
     *       verified or created.
     *   <li>If a new edge needs to be created, the outgoing edges of the acquired locks are traversed
     *       to check for a cycle that reaches the lock to be acquired. If no cycle is detected, a new
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
Back to top