Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,926 for Preference (0.26 sec)

  1. src/crypto/tls/defaults.go

    		return disabledCipherSuites[c] ||
    			tlsrsakex.Value() != "1" && rsaKexCiphers[c] ||
    			tls3des.Value() != "1" && tdesCiphers[c]
    	})
    }
    
    // defaultCipherSuitesTLS13 is also the preference order, since there are no
    // disabled by default TLS 1.3 cipher suites. The same AES vs ChaCha20 logic as
    // cipherSuitesPreferenceOrder applies.
    //
    // defaultCipherSuitesTLS13 should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/util/exportto.go

    // and false if it is set to namespace local.
    func IsExportToAllNamespaces(exportTos []string) bool {
    	exportedToAll := false
    	for _, e := range exportTos {
    		if e == ExportToAllNamespaces {
    			// give preference to "*" and stop iterating
    			exportedToAll = true
    			break
    		}
    	}
    	if len(exportTos) == 0 {
    		exportedToAll = true
    	}
    	return exportedToAll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 08 15:13:29 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/developingPlugins/reactingToBuildFeatures/groovy/buildSrc/src/main/java/MyPlugin.java

                myOptionalPluginLogicIncompatibleWithIsolatedProjects();
            }
        }
    
        private String describeFeatureUsage(Boolean requested) {
            return requested == null ? "no preference" : requested ? "opt-in" : "opt-out";
        }
    
        private void myOptionalPluginLogicIncompatibleWithIsolatedProjects() {
        }
    }
    // end::my-plugin[]
    
    class MyReport {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/shortnames.go

    package report
    
    import (
    	"regexp"
    
    	"github.com/google/pprof/internal/graph"
    )
    
    var sepRE = regexp.MustCompile(`::|\.`)
    
    // shortNameList returns a non-empty sequence of shortened names
    // (in decreasing preference) that can be used to represent name.
    func shortNameList(name string) []string {
    	name = graph.ShortenFunctionName(name)
    	seps := sepRE.FindAllStringIndex(name, -1)
    	result := make([]string, 0, len(seps)+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. cmd/sftp-server.go

    var caPublicKey ssh.PublicKey
    
    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=46
    // preferredKexAlgos specifies the default preference for key-exchange
    // algorithms in preference order. The diffie-hellman-group16-sha512 algorithm
    // is disabled by default because it is a bit slower than the others.
    var preferredKexAlgos = []string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/_affinity.tpl

            {{- end }}
      {{- end }}
    {{- end }}
    
    {{- define "nodeAffinityPreferredDuringScheduling" }}
      {{- range $key, $val := .global.arch }}
        {{- if gt ($val | int) 0 }}
        - weight: {{ $val | int }}
          preference:
            matchExpressions:
            - key: kubernetes.io/arch
              operator: In
              values:
              - {{ $key | quote }}
        {{- end }}
      {{- end }}
    {{- end }}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. cluster/addons/dns/kube-dns/README.md

    be reset to 1. See [Cluster add-ons README](../../README.md) and
    [#36411](https://github.com/kubernetes/kubernetes/issues/36411) for reference.
    
    ## kube-dns addon templates
    
    This directory contains the base UNDERSCORE templates that can be used to
    generate the kube-dns.yaml.in needed in Salt format.
    
    Due to a varied preference in templating language choices, the transform
    Makefile in this directory should be enhanced to generate all required formats
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  8. src/crypto/tls/auth.go

    		// can assume that it supports SHA1. See RFC 5246, Section 7.4.1.4.1.
    		peerAlgs = []SignatureScheme{PKCS1WithSHA1, ECDSAWithSHA1}
    	}
    	// Pick signature scheme in the peer's preference order, as our
    	// preference order is not configurable.
    	for _, preferredAlg := range peerAlgs {
    		if needFIPS() && !isSupportedSignatureAlgorithm(preferredAlg, defaultSupportedSignatureAlgorithmsFIPS) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-egress/templates/_affinity.tpl

            {{- end }}
      {{- end }}
    {{- end }}
    
    {{- define "nodeAffinityPreferredDuringScheduling" }}
      {{- range $key, $val := .global.arch }}
        {{- if gt ($val | int) 0 }}
        - weight: {{ $val | int }}
          preference:
            matchExpressions:
            - key: kubernetes.io/arch
              operator: In
              values:
              - {{ $key | quote }}
        {{- end }}
      {{- end }}
    {{- end }}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 10 21:23:08 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/PreferJavaRuntimeVariantTest.groovy

        final PreferJavaRuntimeVariant schema = new PreferJavaRuntimeVariant(TestUtil.objectInstantiator())
    
        def "should prefer the runtime variant if the consumer doesn't express any preference and that runtime is in the candidates"() {
            given:
            def rule = schema.disambiguationRules(Usage.USAGE_ATTRIBUTE)
            MultipleCandidatesResult<Usage> candidates = Mock(MultipleCandidatesResult)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top