Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for compromised (0.18 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

    This can indicate that a dependency has been compromised. Please carefully verify the checksums."""
    
                whenVerbose """Dependency verification failed for configuration ':compileClasspath':
      - On artifact foo-1.0.jar (org:foo:1.0) in repository 'maven': expected a 'sha256' checksum of 'invalid' but was '${getChecksum(foo, "sha256")}'
    
    This can indicate that a dependency has been compromised. Please carefully verify the checksums."""
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    ** you can use <<#sec:trusting-several-checksums,`also-trust`>> to accept the additional checksums
    * the dependency was compromised
    ** immediately inform the maintainers of the library
    ** notify the repository maintainers of the compromised library
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    // all have the same session ticket keys. If the session ticket keys leaks,
    // previously recorded and future TLS connections using those keys might be
    // compromised.
    func (c *Config) SetSessionTicketKeys(keys [][32]byte) {
    	if len(keys) == 0 {
    		panic("tls: keys must have at least one key")
    	}
    
    	newKeys := make([]ticketKey, len(keys))
    	for i, bytes := range keys {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    // All other types (including string, slice, and interface types) count as one element.
    // If countBlank is IgnoreBlankFields, then blank struct fields
    // (and their comprised elements) are excluded from the count.
    // struct { x, y [3]int } has six components; [10]struct{ x, y string } has twenty.
    func (t *Type) NumComponents(countBlank componentsIncludeBlankFields) int64 {
    	switch t.kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	uint16Len = 2
    
    	// uint32Len is the length (in bytes) of a uint32.
    	uint32Len = 4
    
    	// headerLen is the length (in bytes) of a DNS header.
    	//
    	// A header is comprised of 6 uint16s and no padding.
    	headerLen = 6 * uint16Len
    )
    
    type nestedError struct {
    	// s is the current level's error message.
    	s string
    
    	// err is the nested error.
    	err error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top