Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 170 for x_scale (0.08 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler_test.go

    				},
    				{
    					Manager:     "scale",
    					Operation:   metav1.ManagedFieldsOperationUpdate,
    					APIVersion:  "apps/v1",
    					FieldsType:  "FieldsV1",
    					FieldsV1:    &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:the-replicas":{}}}`)},
    					Subresource: "scale",
    				},
    			},
    		},
    		{
    			desc:         "Custom resource without scale subresource, scaling a version with `scale`",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd.go

    		storage.Status = &StatusREST{store: &statusStore}
    	}
    
    	if scale := strategy.scale; scale != nil {
    		var labelSelectorPath string
    		if scale.LabelSelectorPath != nil {
    			labelSelectorPath = *scale.LabelSelectorPath
    		}
    
    		storage.Scale = &ScaleREST{
    			store:               store,
    			specReplicasPath:    scale.SpecReplicasPath,
    			statusReplicasPath:  scale.StatusReplicasPath,
    			labelSelectorPath:   labelSelectorPath,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/image_grad.cc

      // The internal gradient implementation needs the shape of the input image.
      // x_shape = shape(x)[1:3]
      //         = slice(shape(x), {1}, {3 - 1})
      auto x_shape = Slice(scope, Shape(scope, op.input(0)), {1}, {2});
      grad_outputs->push_back(internal::ResizeNearestNeighborGrad(
          scope, grad_inputs[0], x_shape,
          internal::ResizeNearestNeighborGrad::AlignCorners(align_corners)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 11 00:29:23 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  4. pkg/registry/apps/statefulset/storage/storage_test.go

    		t.Fatalf("error updating scale %v: %v", update, err)
    	}
    
    	obj, err := storage.Scale.Get(ctx, name, &metav1.GetOptions{})
    	if err != nil {
    		t.Fatalf("error fetching scale for %s: %v", name, err)
    	}
    	scale := obj.(*autoscaling.Scale)
    	if scale.Spec.Replicas != int32(replicas) {
    		t.Errorf("wrong replicas count expected: %d got: %d", replicas, scale.Spec.Replicas)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. pkg/registry/core/replicationcontroller/storage/storage_test.go

    		t.Fatalf("error updating scale %v: %v", update, err)
    	}
    	obj, err := storage.Scale.Get(ctx, name, &metav1.GetOptions{})
    	if err != nil {
    		t.Fatalf("error fetching scale for %s: %v", name, err)
    	}
    	scale := obj.(*autoscaling.Scale)
    	if scale.Spec.Replicas != replicas {
    		t.Errorf("wrong replicas count expected: %d got: %d", replicas, rc.Spec.Replicas)
    	}
    
    	update.ResourceVersion = rc.ResourceVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 06:57:01 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/mapper_test.go

    		{gvr("extensions", "v1beta1", "deployments"), "", gvk("extensions", "v1beta1", "Deployment")},
    		// deployments/scale (omitted for apps/v1alpha1)
    		{gvr("apps", "v1", "deployments"), "scale", gvk("", "", "Scale")},
    		{gvr("apps", "v1beta1", "deployments"), "scale", gvk("", "", "Scale")},
    		{gvr("extensions", "v1beta1", "deployments"), "scale", gvk("", "", "Scale")},
    		// deployments/status (omitted for apps/v1alpha1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    -	  if (cp[2 * nhere - 1] < usrc[nhere -1])
    +	  if (cp[2 * nhere - 1] < usrc[nhere - 1])
     	    {
     	      cp += 2 * nhere;
     	      continue;
    diff --git a/locale/xlocale.h b/locale/xlocale.h
    index 98c080b..843bd45 100644
    --- a/locale/xlocale.h
    +++ b/locale/xlocale.h
    @@ -20,6 +20,9 @@
     #ifndef _XLOCALE_H
     #define _XLOCALE_H	1
     
    +#ifndef _BITS_TYPES___LOCALE_T_H
    +#define _BITS_TYPES___LOCALE_T_H 1
    +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/autoscaling/v2/generated.proto

    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/autoscaling/v2";
    
    // ContainerResourceMetricSource indicates how to scale on a resource metric known to
    // Kubernetes, as specified in requests and limits, describing each pod in the
    // current scale target (e.g. CPU or memory).  The values will be averaged
    // together before being compared to the target.  Such metrics are built in to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2beta2/types_swagger_doc_generated.go

    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_ContainerResourceMetricSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

    namespace mlir::quant::stablehlo {
    
    // Checks whether an op is connected with a quantized composite function. If
    // not, the same-scale op will not be quantized. This decision is based on the
    // current assumption that the performance gain of the same-scale op itself
    // could not beat the overhead of the quantize and dequantize routines need to
    // be added around that op. When the assumption changes, this policy might
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top