Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 170 for scaleIO (0.18 sec)

  1. staging/src/k8s.io/api/apps/v1beta1/types_swagger_doc_generated.go

    }
    
    func (Scale) SwaggerDoc() map[string]string {
    	return map_Scale
    }
    
    var map_ScaleSpec = map[string]string{
    	"":         "ScaleSpec describes the attributes of a scale subresource",
    	"replicas": "replicas is the number of observed instances of the scaled object.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        verbs:
        - create
      - apiGroups:
        - apps
        resources:
        - daemonsets
        - deployments
        - deployments/rollback
        - deployments/scale
        - replicasets
        - replicasets/scale
        - statefulsets
        - statefulsets/scale
        verbs:
        - create
        - delete
        - deletecollection
        - patch
        - update
      - apiGroups:
        - autoscaling
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta1/types.go

    )
    
    // ScaleSpec describes the attributes of a scale subresource
    type ScaleSpec struct {
    	// replicas is the number of observed instances of the scaled object.
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    }
    
    // ScaleStatus represents the current status of a scale subresource.
    type ScaleStatus struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption.go

    	}
    
    	scaleSubresourceName := fmt.Sprintf("%s/scale", gvr.Resource)
    	for _, resource := range resourceList.APIResources {
    		if resource.Name != scaleSubresourceName {
    			continue
    		}
    
    		for _, scaleGv := range scaleclient.NewScaleConverter().ScaleVersions() {
    			if resource.Group == scaleGv.Group &&
    				resource.Version == scaleGv.Version &&
    				resource.Kind == "Scale" {
    				return true, nil
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    }
    
    func (Scale) SwaggerDoc() map[string]string {
    	return map_Scale
    }
    
    var map_ScaleSpec = map[string]string{
    	"":         "ScaleSpec describes the attributes of a scale subresource",
    	"replicas": "desired number of instances for the scaled object.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_weights.mlir

    // CHECK-DAG: %[[SCALE:.*]] = "tf.Const"() <{value = dense<0.00866141729> : tensor<f32>}> : () -> tensor<f32>
    
    // CHECK-LABEL: func private @composite_dequantize_uniform_
    // CHECK-DAG: %[[SCALE:.*]] = "tf.Const"() <{value = dense<0.00866141729> : tensor<f32>}> : () -> tensor<f32>
    
    // CHECK-LABEL: func private @composite_dequantize_uniform
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 42K bytes
    - Viewed (0)
  7. pkg/registry/batch/job/strategy.go

    		// rule for checking the format of completedIndexes expects them to be
    		// below .spec.completions, however, this it is ok if the
    		// status.completedIndexes go beyond completions just after a user scales
    		// down a Job.
    		isIndexed := ptr.Deref(newJob.Spec.CompletionMode, batch.NonIndexedCompletion) == batch.IndexedCompletion
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/internal/profile/profile.go

    func (p *Profile) Empty() bool {
    	return len(p.Sample) == 0
    }
    
    // Scale multiplies all sample values in a profile by a constant.
    func (p *Profile) Scale(ratio float64) {
    	if ratio == 1 {
    		return
    	}
    	ratios := make([]float64, len(p.SampleType))
    	for i := range p.SampleType {
    		ratios[i] = ratio
    	}
    	p.ScaleN(ratios)
    }
    
    // ScaleN multiplies each sample values in a sample by a different amount.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v1/types_swagger_doc_generated.go

    }
    
    func (Scale) SwaggerDoc() map[string]string {
    	return map_Scale
    }
    
    var map_ScaleSpec = map[string]string{
    	"":         "ScaleSpec describes the attributes of a scale subresource.",
    	"replicas": "replicas is the desired number of instances for the scaled object.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"maxSurge":...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top