Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 996 for Preferred (0.25 sec)

  1. prow/config/metrics/metrics.yaml

      template:
        metadata:
          labels:
            k8s-app: metrics-server
        spec:
          containers:
          - args:
            - --cert-dir=/tmp
            - --secure-port=10250
            - --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname
            - --kubelet-use-node-status-port
            - --metric-resolution=15s
            - --kubelet-insecure-tls
            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. .github/bot_config.yml

             * It has an added advantage since you can you easily switch to different hardware accelerators (cpu, gpu, tpu) as per the task.
             * All you need is a good internet connection and you are all set.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    == Adding constraints on transitive dependencies
    
    Dependency constraints allow you to define the version or the version range of both dependencies declared in the build script and transitive dependencies.
    It is the preferred method to express constraints that should be applied to all dependencies of a configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    		return false
    	}
    
    	if lhs.GroupVersion() == rhs.GroupVersion() {
    		return lhs.Kind < rhs.Kind
    	}
    
    	// otherwise, the difference is in the GroupVersion, so we need to sort with respect to the preferred order
    	lhsIndex := -1
    	rhsIndex := -1
    
    	for i := range o.sortOrder {
    		if o.sortOrder[i] == lhs.GroupVersion() {
    			lhsIndex = i
    		}
    		if o.sortOrder[i] == rhs.GroupVersion() {
    			rhsIndex = i
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/language.go

    type CanonType int
    
    const (
    	// Replace deprecated base languages with their preferred replacements.
    	DeprecatedBase CanonType = 1 << iota
    	// Replace deprecated scripts with their preferred replacements.
    	DeprecatedScript
    	// Replace deprecated regions with their preferred replacements.
    	DeprecatedRegion
    	// Remove redundant scripts.
    	SuppressScript
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. pkg/channels/unbounded.go

    // allocation, and also that users need a type assertion while reading. For
    // performance critical code paths, using Unbounded is strongly discouraged and
    // defining a new type specific implementation of this buffer is preferred. See
    // internal/transport/transport.go for an example of this.
    type Unbounded[T any] struct {
    	c       chan T
    	mu      sync.Mutex
    	backlog []T
    }
    
    // NewUnbounded returns a new instance of Unbounded.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 31 19:53:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tfcompile_main.cc

      flags.out_header = "out.h";
      flags.entry_point = "entry";
      flags.debug_info_path_begin_marker = "";
    
      // Note that tfcompile.bzl's tf_library macro sets fast math flags as that is
      // generally the preferred case.
      std::vector<tensorflow::Flag> flag_list;
      AppendMainFlags(&flag_list, &flags);
      xla::AppendDebugOptionsFlags(&flag_list);
    
      tensorflow::string usage = tensorflow::tfcompile::kUsageHeader;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. samples/kind-lb/README.md

      -i|--ip-family     - ip family to be supported, default is ipv4 only. Value should be ipv4, ipv6, or dual
      --ipv6gw          - set ipv6 as the gateway, necessary for dual-stack IPv6-preferred clusters
      -h|--help          - print the usage of this script"
    ```
    
    The `ip-space` parameter controls the IP range that metallb will use for allocating
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pkg/kubectl/cmd/convert/convert.go

    }
    
    // asVersionedObject converts a list of infos into a single object - either a List containing
    // the objects as children, or if only a single Object is present, as that object. The provided
    // version will be preferred as the conversion target, but the Object's mapping version will be
    // used if that version is not present.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 03:21:17 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginAware.java

     */
    @HasInternalProtocol
    public interface PluginAware {
    
        /**
         * The container of plugins that have been applied to this object.
         * <p>
         * While not deprecated, it is preferred to use the methods of this interface or the {@link #getPluginManager() plugin manager} than use the plugin container.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 4.2K bytes
    - Viewed (0)
Back to top