Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for compromised (0.23 sec)

  1. CHANGELOG/CHANGELOG-1.16.md

    ## Changelog since v1.16.12
    
    ## Urgent Upgrade Notes
    
    ### (No, really, you MUST read this before you upgrade)
    
     - CVE-2020-8559 (Medium): Privilege escalation from compromised node to cluster. See https://github.com/kubernetes/kubernetes/issues/92914 for more details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    type Option func(*options)
    
    // Transitional sets a Profile to use the Transitional mapping as defined in UTS
    // #46. This will cause, for example, "ß" to be mapped to "ss". Using the
    // transitional mapping provides a compromise between IDNA2003 and IDNA2008
    // compatibility. It is used by some browsers when resolving domain names. This
    // option is only meaningful if combined with MapForLookup.
    func Transitional(transitional bool) Option {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.20.md

      - CVE-2020-8559 (Medium): Privilege escalation from compromised node to cluster. See https://github.com/kubernetes/kubernetes/issues/92914 for more details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.19.md

     - CVE-2020-8559 (Medium): Privilege escalation from compromised node to cluster. See https://github.com/kubernetes/kubernetes/issues/92914 for more details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  5. pkg/dns/client/dns.go

    	// The key is a FQDN matching a DNS query (like example.com.), the value is pre-created DNS RR records
    	// of A or AAAA type as appropriate.
    	name4 map[string][]dns.RR
    	name6 map[string][]dns.RR
    	// The cname records here (comprised of different variants of the hosts above,
    	// expanded by the search namespaces) pointing to the actual host.
    	cname map[string][]dns.RR
    }
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client.go

    	hello.ticketSupported = true && !echInner
    
    	if hello.supportedVersions[0] == VersionTLS13 {
    		// Require DHE on resumption as it guarantees forward secrecy against
    		// compromise of the session ticket key. See RFC 8446, Section 4.2.9.
    		hello.pskModes = []uint8{pskModeDHE}
    	}
    
    	// Session resumption is not allowed if renegotiating because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	// operations. Unfortunately, updating a shared global data structure in the
    	// timer hot path adds too much overhead in applications frequently switching
    	// between no timers and some timers.
    	//
    	// As a compromise, the timer mask is updated only on pidleget / pidleput. A
    	// running P (returned by pidleget) may add a timer at any time, so its mask
    	// must be set. An idle P (passed to pidleput) cannot add new timers while
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    since the GPLv2 is incompatible with the license terms of some items
    included in the distribution by Oracle, removing the Classpath
    Exception could therefore effectively compromise your ability to
    further distribute the package.
    
    Proceed with caution and we recommend that you obtain the advice of a
    lawyer skilled in open source matters before removing the Classpath
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. 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)
  10. 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