Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,926 for Preference (0.27 sec)

  1. pkg/kubelet/cm/devicemanager/topology_hints.go

    		// Only consider devices that actually contain topology information.
    		if aligned := m.deviceHasTopologyAlignment(resource); !aligned {
    			klog.InfoS("Resource does not have a topology preference", "resource", resource)
    			deviceHints[resource] = nil
    			continue
    		}
    
    		// Short circuit to regenerate the same hints if there are already
    		// devices allocated to the Container. This might happen after a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/GradlePluginVariantsSupportTest.groovy

                versionAttribute('8.0')
            ]
    
            then:
            schema.matcher().matches(producer, consumer, ep) == [versionAttribute('7.1')]
        }
    
        def "fails to select one candidate if there is no clear preference"() {
            when:
            def consumer = versionAttribute('7.2')
            def producer = [
                versionAttribute('6.0'),
                versionAttribute('7.0'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    		},
    		// there are 2 regions, say regionChina(node1,node3,node4) and regionIndia(node2,node5), both regions have nodes that match the preference.
    		// But there are more nodes(actually more existing pods) in regionChina that match the preference than regionIndia.
    		// Then, nodes in regionChina get higher score than nodes in regionIndia, and all the nodes in regionChina should get a same score(high score),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

    // It contains a list of APIVersionDiscovery that holds a list of APIResourceDiscovery types served for a version.
    // Versions are in descending order of preference, with the first version being the preferred entry.
    message APIGroupDiscovery {
      // Standard object's metadata.
      // The only field completed will be name. For instance, resourceVersion will be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/attributes/DisambiguationRuleChain.java

        /**
         * <p>Adds an arbitrary disambiguation rule to the chain.</p>
         * <p>A disambiguation rule can select the best match from a list of candidates.</p>
         *
         * <p>A rule <i>can</i> express an preference by calling the @{link {@link MultipleCandidatesDetails#closestMatch(Object)}
         * method to tell that a candidate is the best one.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  6. src/errors/errors.go

    // (pre-order, depth-first traversal).
    //
    // [Is] examines the tree of its first argument looking for an error that
    // matches the second. It reports whether it finds a match. It should be
    // used in preference to simple equality checks:
    //
    //	if errors.Is(err, fs.ErrExist)
    //
    // is preferable to
    //
    //	if err == fs.ErrExist
    //
    // because the former will succeed if err wraps [io/fs.ErrExist].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 19:45:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2/types.go

    // It contains a list of APIVersionDiscovery that holds a list of APIResourceDiscovery types served for a version.
    // Versions are in descending order of preference, with the first version being the preferred entry.
    type APIGroupDiscovery struct {
    	v1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. pkg/controller/daemon/util/daemonset_util_test.go

    					},
    				},
    			},
    		},
    		{
    			affinity: &v1.Affinity{
    				NodeAffinity: &v1.NodeAffinity{
    					PreferredDuringSchedulingIgnoredDuringExecution: []v1.PreferredSchedulingTerm{
    						{
    							Preference: v1.NodeSelectorTerm{
    								MatchExpressions: []v1.NodeSelectorRequirement{
    									{
    										Key:      v1.LabelHostname,
    										Operator: v1.NodeSelectorOpIn,
    										Values:   []string{"host_1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/net/lookup_windows_test.go

    		pref, _, _ := dtoi(ans[2])
    		mx = append(mx, &MX{absDomainName(ans[3]), uint16(pref)})
    	}
    	// windows nslookup syntax
    	// gmail.com       MX preference = 30, mail exchanger = alt3.gmail-smtp-in.l.google.com
    	rx = regexp.MustCompile(`(?m)^([a-z0-9.\-]+)\s+MX preference\s*=\s*([0-9]+)\s*,\s*mail exchanger\s*=\s*([a-z0-9.\-]+)$`)
    	for _, ans := range rx.FindAllStringSubmatch(r, -1) {
    		pref, _, _ := dtoi(ans[2])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. pkg/apis/apidiscovery/types.go

    // It contains a list of APIVersionDiscovery that holds a list of APIResourceDiscovery types served for a version.
    // Versions are in descending order of preference, with the first version being the preferred entry.
    type APIGroupDiscovery struct {
    	v1.TypeMeta
    	// Standard object's metadata.
    	// The only field completed will be name. For instance, resourceVersion will be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top