Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 261 for Preference (0.22 sec)

  1. 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)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    }
    
    // findObjdump finds and returns path to preferred objdump binary.
    // Order of preference is: llvm-objdump, objdump.
    // On MacOS only, also looks for gobjdump with least preference.
    // Accepts a list of paths and returns:
    // a string with path to the preferred objdump binary if found,
    // or an empty string if not found;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    	}
    	if state.DidResume {
    		t.Fatalf("handshake resumed at a higher version")
    	}
    }
    
    // Note: see comment in handshake_test.go for details of how the reference
    // tests work.
    
    // serverTest represents a test of the TLS server handshake against a reference
    // implementation.
    type serverTest struct {
    	// name is a freeform string identifying the test and the file in which
    	// the expected results will be stored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message GlobalConfig {
      // Specifies pod scheduling arch(amd64, ppc64le, s390x, arm64) and weight as follows:
      //   0 - Never scheduled
      //   1 - Least preferred
      //   2 - No preference
      //   3 - Most preferred
      //
      // Deprecated: replaced by the affinity k8s settings which allows architecture nodeAffinity configuration of this behavior.
      ArchConfig arch = 1 [deprecated = true];
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    	internalFieldPath, _, err := podshelper.ConvertDownwardAPIFieldLabel(fs.APIVersion, fs.FieldPath, "")
    	if err != nil {
    		return "", err
    	}
    
    	// make podIPs order match node IP family preference #97979
    	podIPs = kl.sortPodIPs(podIPs)
    	if len(podIPs) > 0 {
    		podIP = podIPs[0]
    	}
    
    	switch internalFieldPath {
    	case "spec.nodeName":
    		return pod.Spec.NodeName, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/volume/plugins.go

    // values.  Those config values are then set to an instance of VolumeConfig
    // and passed to the plugin.
    //
    // Values in VolumeConfig are intended to be relevant to several plugins, but
    // not necessarily all plugins.  The preference is to leverage strong typing
    // in this struct.  All config items must have a descriptive but non-specific
    // name (i.e, RecyclerMinimumTimeout is OK but RecyclerMinimumTimeoutForNFS is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. pilot/pkg/model/context.go

    		}
    		return true
    	})
    
    	node.ServiceTargets = instances
    }
    
    // SetWorkloadLabels will set the node.Labels.
    // It merges both node meta labels and workload labels and give preference to workload labels.
    func (node *Proxy) SetWorkloadLabels(env *Environment) {
    	// If this is VM proxy, do not override labels at all, because in istio test we use pod to simulate VM.
    	if node.IsVM() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  8. pilot/pkg/config/kube/gateway/conversion.go

    // routeParentReference holds information about a route's parent reference
    type routeParentReference struct {
    	// InternalName refers to the internal name of the parent we can reference it by. For example, "mesh" or "my-ns/my-gateway"
    	InternalName string
    	// InternalKind is the Group/Kind of the parent
    	InternalKind config.GroupVersionKind
    	// DeniedReason, if present, indicates why the reference was not valid
    	DeniedReason *ParentError
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveReferenceTest.kt

            file: KtFile,
        ): Collection<ResolveTestCaseContext<KtReference?>> = carets.flatMap<CaretMarker, ResolveTestCaseContext<KtReference?>> { caret ->
            val marker = caret.fullTag
            val contexts: List<ResolveTestCaseContext<KtReference?>> = findReferencesAtCaret(file, caret.offset).map { reference ->
                ResolveTestCaseContext(element = reference, context = reference.element, marker = marker)
            }
    
            contexts.ifEmpty {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:01 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/os/exec/exec.go

    	// above, but we have to keep lookPathErr around for use by
    	// old programs building against new toolchains.
    	// The String and Start methods look for an error in lookPathErr
    	// in preference to Err, to preserve the errors that execabs sets.
    	//
    	// In general we don't guarantee misuse of reflect like this,
    	// but the misuse of reflect was by us, the best of various bad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top