Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 996 for Preferred (0.11 sec)

  1. tensorflow/compiler/jit/device_util.h

    //
    // We choose the device using the following rules:
    //
    //  - It is an error for `device_names` to contain more than one device of the
    //    same type.
    //  - GPU is preferred over CPU.
    //  - If `allow_mixing_unknown_and_cpu` is true then unknown devices are
    //    preferred over CPU.
    //  - XLA devices count as "unrecognized devices".
    //
    // This set of rules above implicitly assume that XLA:GPU can compile all
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/ArtifactRepositoriesPluginResolver.java

            if (exists(markerDependency) || autoApplied) {
                // Even if we don't find the auto-applied plugin version, continue trying to resolve it with a preferred version,
                // in case the user provides an explicit or transitive required version.
                // The resolution will fail if there is no user-provided required version, however it avoids us failing here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/root_test.go

    		{
    			GroupVersion: extensionsGroupName + "/v1",
    			Version:      "v1",
    		},
    	}
    	extensionsPreferredVersion := metav1.GroupVersionForDiscovery{
    		GroupVersion: extensionsGroupName + "/preferred",
    		Version:      "preferred",
    	}
    	handler.AddGroup(metav1.APIGroup{
    		Name:             extensionsGroupName,
    		Versions:         extensionsVersions,
    		PreferredVersion: extensionsPreferredVersion,
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 08 22:33:50 UTC 2018
    - 6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Ascii.java

       * agreement between sender and recipient of data.
       *
       * @since 8.0
       */
      public static final byte LF = 10;
    
      /**
       * Alternate name for {@link #LF}. ({@code LF} is preferred.)
       *
       * @since 8.0
       */
      public static final byte NL = 10;
    
      /**
       * Vertical Tabulation ('\v'): A format effector which controls the movement of the printing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.h

    bool HasTf2XlaFallback(const TypeID& type_id);
    
    // Whether this type is allowed to have a TF2XLA fallback.
    bool IsOpAllowedTf2xlaFallback(const TypeID& type_id);
    
    // Whether this type is Preferred to use a TF2XLA fallback kernel when using
    // the MLIR bridge. If this is true, then the TF2XLA fallback kernel will be
    // used over the MLIR lowering.
    bool IsOpAllowedTf2xlaPreferred(const TypeID& type_id);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 20:53:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. cluster/addons/metrics-server/metrics-server-deployment.yaml

            command:
            - /metrics-server
            - --metric-resolution=15s
            - --kubelet-use-node-status-port
            - --kubelet-insecure-tls
            - --kubelet-preferred-address-types=InternalIP,Hostname,InternalDNS,ExternalDNS,ExternalIP
            - --cert-dir=/tmp
            - --secure-port=10250
            ports:
            - containerPort: 10250
              name: https
              protocol: TCP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. releasenotes/notes/pilot-load-dns-cert-known-location-deprecate-flags.yaml

      ```
      The CA path will alternatively be loaded from: `/var/run/secrets/tls/ca.crt`
      It also automatically loads any secret called istiod-tls and the istio-root-ca-configmap into those paths.
      This method is preferred to use those well known paths than to set the tls args.
      This will allow for an easier installation process for istio-csr as well as any other external issuer that needs to modify
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 29 22:41:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/test/InternalNullabilityTest.java

    public class InternalNullabilityTest {
    
        /**
         * This test validates that all internal classes are annotated with {@link NonNullApi}.
         * <p>
         * The annotation can be applied on the class directly, but the preferred way is to annotate the package by adding or updating the {@code package-info.java} file.
         * See {@code subprojects/core-api/src/main/java/org/gradle/package-info.java} for an example.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. pkg/log/klog.go

    		klog.InitFlags(klogFlagSet)
    	})
    	// --v= flag of klog.
    	return klogFlagSet.Lookup("v")
    }
    
    // EnableKlogWithVerbosity sets the klog verbosity directly.
    // When using in an application, EnableKlogWithCobra is preferred to expose a --vklog flag.
    func EnableKlogWithVerbosity(v int) {
    	_ = klogFlagSet.Set("v", fmt.Sprint(v))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. pkg/util/node/node_test.go

    		ExpectErr     string
    		ExpectAddress string
    	}{
    		"no addresses": {
    			ExpectErr: "no preferred addresses found; known addresses: []",
    		},
    		"missing address": {
    			Addresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "1.2.3.4"},
    			},
    			Preferences: []v1.NodeAddressType{v1.NodeHostName},
    			ExpectErr:   "no preferred addresses found; known addresses: [{InternalIP 1.2.3.4}]",
    		},
    		"found address": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top