Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 726 for Preferred (0.37 sec)

  1. pkg/kubelet/cm/memorymanager/policy_static.go

    	// try to find the preferred hint with the minimal number of NUMA nodes, relevant for the restricted policy
    	bestHint := topologymanager.TopologyHint{}
    	for _, hint := range hints {
    		if bestHint.NUMANodeAffinity == nil {
    			bestHint = hint
    			continue
    		}
    
    		// preferred of the current hint is true, when the extendedHint preferred is false
    		if hint.Preferred && !bestHint.Preferred {
    			bestHint = hint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    resetting to kubeadm defaults before a successful upgrade can be performed. The version to manually
    upgrade to is denoted in the "PREFERRED VERSION" column.
    
    API GROUP                 CURRENT VERSION   PREFERRED VERSION   MANUAL UPGRADE REQUIRED
    kubeproxy.config.k8s.io   v1alpha1          v1alpha1            no
    kubelet.config.k8s.io     v1beta1           v1beta1             no
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/policy_restricted_test.go

    	tcases := []struct {
    		name     string
    		hint     TopologyHint
    		expected bool
    	}{
    		{
    			name:     "Preferred is set to false in topology hints",
    			hint:     TopologyHint{nil, false},
    			expected: false,
    		},
    		{
    			name:     "Preferred is set to true in topology hints",
    			hint:     TopologyHint{nil, true},
    			expected: true,
    		},
    	}
    
    	for _, tc := range tcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/doc.go

    //
    // The most important function of package language is to match a list of
    // user-preferred languages to a list of supported languages.
    // It alleviates the developer of dealing with the complexity of this process
    // and provides the user with the best experience
    // (see https://blog.golang.org/matchlang).
    //
    // # Matching preferred against supported languages
    //
    // A Matcher for an application that supports English, Australian English,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/topologymanager/policy_best_effort_test.go

    	tcases := []struct {
    		name     string
    		hint     TopologyHint
    		expected bool
    	}{
    		{
    			name:     "Preferred is set to false in topology hints",
    			hint:     TopologyHint{nil, false},
    			expected: true,
    		},
    		{
    			name:     "Preferred is set to true in topology hints",
    			hint:     TopologyHint{nil, true},
    			expected: true,
    		},
    	}
    
    	for _, tc := range tcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemSupportTest.groovy

            details.hasResult()
            !details.matches.empty
            details.matches == [usage(preferred)] as Set
    
            details
    
            where: // not exhaustive, tests pathological cases
            consumer                | candidates                                                                                                        | preferred
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

        String getRequiredVersion();
    
        /**
         * The preferred version of a module (which may be an exact version or a version range).
         *
         * The preferred version of a module provides a hint when resolving the version,
         * but will not be honored in the presence of conflicting constraints.
         *
         * @return the preferred version, or empty string if no preferred version specified. Never null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/devicemanager/topology_hints.go

    			NUMANodeAffinity: mask,
    			Preferred:        false,
    		})
    	})
    
    	// Loop back through all hints and update the 'Preferred' field based on
    	// counting the number of bits sets in the affinity mask and comparing it
    	// to the minAffinity. Only those with an equal number of bits set will be
    	// considered preferred.
    	for i := range hints {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationExecutor.java

         * build operation thread pool. Operations may execute concurrently. Blocks until all operations are complete.
         *
         * <p>Actions are not permitted to access any mutable project state. Generally, this is preferred.</p>
         */
        <O extends RunnableBuildOperation> void runAll(Action<BuildOperationQueue<O>> schedulingAction);
    
        /**
         * Overload allowing {@link BuildOperationConstraint} to be specified.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__networking.k8s.io_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup": {
            "description": "APIGroup contains the name, the supported versions, and the preferred version of a group.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top