Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 115 for downgrades (0.12 sec)

  1. src/crypto/tls/cipher_suites.go

    // any higher one is available. This makes it more defensible to keep weaker
    // cipher suites enabled, especially on the server side where we get the last
    // word, since there are no known downgrade attacks on cipher suites selection.
    //
    // The list is sorted by applying the following priority rules, stopping at the
    // first (most important) applicable one:
    //
    //   - Anything else comes before RC4
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/compute_test.go

    					},
    					After: ClusterState{
    						KubeVersion:    v1Y5.String(),
    						KubeadmVersion: v1Y5.String(), // Note: The kubeadm version mustn't be "downgraded" here
    						DNSVersion:     constants.CoreDNSVersion,
    						EtcdVersion:    getEtcdVersion(v1Y5),
    					},
    				},
    				{
    					Description: "stable version",
    					Before: ClusterState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/toolchain/select.go

    		// will invoke Go 1.23, but as the Go 1.23 child the reason for that
    		// will not be apparent here: it will look like we should be using Go 1.22.
    		// We rely on the targetEnv being set to know not to downgrade.
    		// A longer term problem with the sanity check is that the exact details
    		// may change over time: there may be other reasons that a future Go
    		// version might invoke an older one, and the older one won't know why.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// random as a downgrade protection if the server would be capable of
    	// negotiating a higher version. See RFC 8446, Section 4.1.3.
    	downgradeCanaryTLS12 = "DOWNGRD\x01"
    	downgradeCanaryTLS11 = "DOWNGRD\x00"
    )
    
    // testingOnlyForceDowngradeCanary is set in tests to force the server side to
    // include downgrade canaries even if it's using its highers supported version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    * Avoid dependencies that pull in legacy libraries.
    * Upgrade the dependency version if the new version no longer pulls in a legacy library.
    * Downgrade to `google-collections`. It's not recommended, just mentioned for completeness.
    
    Traditional approaches work but they are not general enough.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/HttpHeaders.java

        private ReferrerPolicyValues() {}
    
        public static final String NO_REFERRER = "no-referrer";
        public static final String NO_REFFERER_WHEN_DOWNGRADE = "no-referrer-when-downgrade";
        public static final String SAME_ORIGIN = "same-origin";
        public static final String ORIGIN = "origin";
        public static final String STRICT_ORIGIN = "strict-origin";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/HttpHeaders.java

        private ReferrerPolicyValues() {}
    
        public static final String NO_REFERRER = "no-referrer";
        public static final String NO_REFFERER_WHEN_DOWNGRADE = "no-referrer-when-downgrade";
        public static final String SAME_ORIGIN = "same-origin";
        public static final String ORIGIN = "origin";
        public static final String STRICT_ORIGIN = "strict-origin";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/controller.go

    	// To make sure the eds update run in serial to prevent stale ones can override new ones
    	// when edsUpdate is called concurrently.
    	// If all share one lock, then all the threads can have an obvious performance downgrade.
    	edsQueue queue.Instance
    
    	workloadHandlers []func(*model.WorkloadInstance, model.Event)
    
    	// callback function used to get the networkID according to workload ip and labels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. internal/config/config.go

    				if !ok {
    					ckvs.Set(kv.Key, kv.Value)
    				}
    			}
    			if _, ok := cp[subSys]; !ok {
    				rnSubSys, ok := renamedSubsys[subSys]
    				if !ok {
    					// A config subsystem was removed or server was downgraded.
    					continue
    				}
    				// Copy over settings from previous sub-system
    				// to newly renamed sub-system
    				for _, kv := range cp[rnSubSys][Default] {
    					_, ok := c[subSys][tgt].Lookup(kv.Key)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// Does not apply to creation or deletion.
    	// Some checks use this to avoid rejecting previously accepted versions due to a control plane upgrade/downgrade.
    	versionsWithUnchangedSchemas sets.Set[string]
    	// suppressPerExpressionCost indicates whether CEL per-expression cost limit should be suppressed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
Back to top