Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for w_scale (0.09 sec)

  1. pilot/pkg/xds/endpoints/ep_filters.go

    		return endpoints
    	}
    
    	// A new array of endpoints to be returned that will have both local and
    	// remote gateways (if any)
    	filtered := make([]*LocalityEndpoints, 0)
    
    	// Scale all weights by the lcm of gateways per network and gateways per cluster.
    	// This will allow us to more easily spread traffic to the endpoint across multiple
    	// network gateways, increasing reliability of the endpoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    colors are first mapped into HSV. A scale is then applied all the saturation
    values, and then remapped back to RGB colorspace.
      }];
    
      let arguments = (ins
        Arg<TensorOf<[TF_Float16, TF_Float32]>, [{Images to adjust.  At least 3-D.}]>:$images,
        Arg<TF_Float32Tensor, [{A float scale to add to the saturation.}]>:$scale
      );
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. samples/bookinfo/src/productpage/templates/productpage.html

    {% block metas %}
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% endblock %}
    
    <title>Simple Bookstore App</title>
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    <script type="text/javascript">
      window.addEventListener("DOMContentLoaded", (event) => {
        const dialog = document.querySelector("dialog");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/finalizer/crd_finalizer.go

    	// is likely to be the originator, so requeuing would hot-loop us.  Failures are requeued by the workqueue directly.
    	// This is a low traffic and scale resource, so the copy is terrible.  It's not good, so better ideas
    	// are welcome.
    	oldCopy := oldCRD.DeepCopy()
    	newCopy := newCRD.DeepCopy()
    	oldCopy.ResourceVersion = ""
    	newCopy.ResourceVersion = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/post_quantize.cc

            if (op->hasOneUse() &&
                op->user_begin()->hasTrait<OpTrait::IsTerminator>())
              return failure();
          }
          // If the quantize op is a requantize op, it is being used in other scale
          // adjustments and should be kept. Instead, moving dequantize op before
          // the requantize op to remove the unnecessary requantize op.
          if (auto qtype = quant::QuantizedType::getQuantizedElementType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/defaults.go

    	return RegisterDefaults(scheme)
    }
    
    func SetDefaults_ResourceList(obj *v1.ResourceList) {
    	for key, val := range *obj {
    		// TODO(#18538): We round up resource values to milli scale to maintain API compatibility.
    		// In the future, we should instead reject values that need rounding.
    		const milliScale = -3
    		val.RoundUp(milliScale)
    
    		(*obj)[v1.ResourceName(key)] = val
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // It uses a brute-force recursive approach to enumerate all objects
    // defined by dependencies of pkg, so that it can learn the set of
    // package paths that may be mentioned in the fact encoding. This does
    // not scale well; use [NewDecoderFunc] where possible.
    func NewDecoder(pkg *types.Package) *Decoder {
    	// Compute the import map for this package.
    	// See the package doc comment.
    	m := importMap(pkg.Imports())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      //
      // For example:
      // 'pods' means pods.
      // 'pods/log' means the log subresource of pods.
      // '*' means all resources, but not subresources.
      // 'pods/*' means all subresources of pods.
      // '*/scale' means all scale subresources.
      // '*/*' means all resources and their subresources.
      //
      // If wildcard is present, the validation rule will ensure resources do not
      // overlap with each other.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Kube-controller-manager: the `horizontal-pod-autoscaler-upscale-delay` and `horizontal-pod-autoscaler-downscale-delay` flags have been removed (deprecated and non-functional since v1.12) ([#124948](https://github.com/kubernetes/kubernetes/pull/124948), [@SataQiu](https://github.com/SataQiu)) [SIG API Machinery,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/asm.go

    func (p *Parser) validSymbol(pseudo string, addr *obj.Addr, offsetOk bool) bool {
    	if addr.Sym == nil || addr.Name != obj.NAME_EXTERN && addr.Name != obj.NAME_STATIC || addr.Scale != 0 || addr.Reg != 0 {
    		p.errorf("%s symbol %q must be a symbol(SB)", pseudo, symbolName(addr))
    		return false
    	}
    	if !offsetOk && addr.Offset != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top