Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 996 for Preferred (0.28 sec)

  1. guava/src/com/google/common/base/Charsets.java

     * guaranteed to be supported by all Java platform implementations.
     *
     * <p>Assuming you're free to choose, note that <b>{@link #UTF_8} is widely preferred</b>.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/StringsExplained#charsets">{@code Charsets}</a>.
     *
     * @author Mike Bostock
     * @since 1.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Charsets.java

     * guaranteed to be supported by all Java platform implementations.
     *
     * <p>Assuming you're free to choose, note that <b>{@link #UTF_8} is widely preferred</b>.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/StringsExplained#charsets">{@code Charsets}</a>.
     *
     * @author Mike Bostock
     * @since 1.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddressFactory.java

            }
        }
    
        /**
         * Locates the possible IP addresses which can be used to communicate with this machine.
         *
         * Loopback addresses are preferred.
         */
        public List<InetAddress> getCommunicationAddresses() {
            try {
                synchronized (lock) {
                    init();
                    return communicationAddresses;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.7K bytes
    - Viewed (2)
  4. pkg/kubelet/cm/devicemanager/manager.go

    	if needed < aligned.Len() {
    		// First allocate from the preferred devices list (if available).
    		preferred, err := m.callGetPreferredAllocationIfAvailable(podUID, contName, resource, aligned.Union(allocated), allocated, required)
    		if err != nil {
    			return nil, err
    		}
    		if allocateRemainingFrom(preferred.Intersection(aligned)) {
    			return allocated, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2beta1/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.
    	// 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
    - 9.6K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPom.java

    /**
     * The POM for a Maven publication.
     *
     * <p>The {@link #withXml(org.gradle.api.Action)} method can be used to modify the
     * descriptor after it has been generated according to the publication data.
     * However, the preferred way to customize the project information to be published
     * is to use the dedicated properties exposed by this class, e.g.
     * {@link #getDescription()}. Please refer to the official
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. internal/grid/trace.go

    	"github.com/minio/minio/internal/pubsub"
    )
    
    // TraceParamsKey allows to pass trace parameters to the request via context.
    // This is only needed when un-typed requests are used.
    // MSS, map[string]string types are preferred, but any struct with exported fields will work.
    type TraceParamsKey struct{}
    
    // traceRequests adds request tracing to the connection.
    func (c *Connection) traceRequests(p *pubsub.PubSub[madmin.TraceInfo, madmin.TraceType]) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    	// if the incoming pod has no inter-pod affinities.
    	if pl.args.IgnorePreferredTermsOfExistingPods && !hasConstraints {
    		return framework.NewStatus(framework.Skip)
    	}
    
    	// Unless the pod being scheduled has preferred affinity terms, we only
    	// need to process nodes hosting pods with affinity.
    	var allNodes []*framework.NodeInfo
    	var err error
    	if hasConstraints {
    		allNodes, err = pl.sharedLister.NodeInfos().List()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version.go

    	}
    	return gv.Version
    }
    
    // Identifier implements runtime.GroupVersioner interface.
    func (gv GroupVersion) Identifier() string {
    	return gv.String()
    }
    
    // KindForGroupVersionKinds identifies the preferred GroupVersionKind out of a list. It returns ok false
    // if none of the options match the group. It prefers a match to group and version over just group.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 09:08:59 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. cni/pkg/util/podutil.go

    			"status",
    		)
    	if errors.IsNotFound(err) {
    		return nil
    	}
    	return err
    }
    
    // Get any IPs currently assigned to the Pod.
    //
    // If 'PodIPs' exists, it is preferred (and should be guaranteed to contain the address in 'PodIP'),
    // otherwise fallback to 'PodIP'.
    //
    // Note that very early in the pod's lifecycle (before all the node CNI plugin invocations finish)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top