Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,926 for Preference (0.15 sec)

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

    	requested := p.guaranteedCPUs(pod, container)
    
    	// Number of required CPUs is not an integer or a container is not part of the Guaranteed QoS class.
    	// It will be treated by the TopologyManager as having no preference and cause it to ignore this
    	// resource when considering pod alignment.
    	// In terms of hints, this is equal to: TopologyHints[NUMANodeAffinity: nil, Preferred: true].
    	if requested == 0 {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/HostSpecifier.java

      }
    
      /**
       * Attempts to return a {@code HostSpecifier} for the given string, throwing an exception if
       * parsing fails. Always use this method in preference to {@link #fromValid(String)} for a
       * specifier that is not already known to be valid.
       *
       * @throws ParseException if the specifier is not valid.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings.go

    		for i, term := range n.PreferredDuringSchedulingIgnoredDuringExecution {
    			warnings = append(warnings, nodeapi.GetWarningsForNodeSelectorTerm(term.Preference, preferredFldPath.Index(i).Child("preference"))...)
    		}
    	}
    	for i, t := range podSpec.TopologySpreadConstraints {
    		if msg, deprecated := nodeapi.GetNodeLabelDeprecatedMessage(t.TopologyKey); deprecated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/match.go

    // value in case no match is found.
    //
    // Its Match method matches the first of the given Tags to reach a certain
    // confidence threshold. The tags passed to Match should therefore be specified
    // in order of preference. Extensions are ignored for matching.
    //
    // The index returned by the Match method corresponds to the index of the
    // matched tag in t, but is augmented with the Unicode extension ('u')of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/HostSpecifier.java

      }
    
      /**
       * Attempts to return a {@code HostSpecifier} for the given string, throwing an exception if
       * parsing fails. Always use this method in preference to {@link #fromValid(String)} for a
       * specifier that is not already known to be valid.
       *
       * @throws ParseException if the specifier is not valid.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/internal/Finalizer.java

         * been cleared by this point.
         */
        reference.clear();
    
        if (reference == frqReference) {
          /*
           * The client no longer has a reference to the FinalizableReferenceQueue. We can stop.
           */
          return false;
        }
    
        try {
          finalizeReferentMethod.invoke(reference);
        } catch (Throwable t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. src/net/dnsclient.go

    			i = j
    		}
    	}
    	addrs[i:].shuffleByWeight()
    }
    
    // An MX represents a single DNS MX record.
    type MX struct {
    	Host string
    	Pref uint16
    }
    
    // byPref sorts MX records by preference
    type byPref []*MX
    
    // sort reorders MX records as specified in RFC 5321.
    func (s byPref) sort() {
    	for i := range s {
    		j := randIntn(i + 1)
    		s[i], s[j] = s[j], s[i]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/tls.go

    				if matchTLS(match, node.Labels, gateways, listenPort.Port, node.Metadata.Namespace) {
    					// Use the service's CIDRs.
    					// But if a virtual service overrides it with its own destination subnet match
    					// give preference to the user provided one
    					// destinationCIDR will be empty for services with VIPs
    					var destinationCIDRs []string
    					if destinationCIDR != "" {
    						destinationCIDRs = []string{destinationCIDR}
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. src/net/conf.go

    type conf struct {
    	netGo  bool // prefer go approach, based on build tag and GODEBUG
    	netCgo bool // prefer cgo approach, based on build tag and GODEBUG
    
    	dnsDebugLevel int // from GODEBUG
    
    	preferCgo bool // if no explicit preference, use cgo
    
    	goos     string   // copy of runtime.GOOS, used for testing
    	mdnsTest mdnsTest // assume /etc/mdns.allow exists, for testing
    }
    
    // mdnsTest is for testing only.
    type mdnsTest int
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

    class DaemonReuseIntegrationTest extends DaemonIntegrationSpec {
        @Rule BlockingHttpServer server = new BlockingHttpServer()
    
        def setup() {
            server.start()
        }
    
        def "idle daemon is reused in preference to starting a new daemon"() {
            given:
            executer.run()
            daemons.daemon.assertIdle()
    
            when:
            5.times {
                executer.run()
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top