Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for scaleIO (0.12 sec)

  1. pkg/api/pod/util_test.go

    					Secret: &api.SecretVolumeSource{
    						SecretName: "Spec.Volumes[*].VolumeSource.Secret"}}}, {
    				VolumeSource: api.VolumeSource{
    					ScaleIO: &api.ScaleIOVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ScaleIO.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					ISCSI: &api.ISCSIVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.PortworxVolume != nil {
    		in, out := &in.PortworxVolume, &out.PortworxVolume
    		*out = new(PortworxVolumeSource)
    		**out = **in
    	}
    	if in.ScaleIO != nil {
    		in, out := &in.ScaleIO, &out.ScaleIO
    		*out = new(ScaleIOPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Local != nil {
    		in, out := &in.Local, &out.Local
    		*out = new(LocalVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.PortworxVolume != nil {
    		in, out := &in.PortworxVolume, &out.PortworxVolume
    		*out = new(PortworxVolumeSource)
    		**out = **in
    	}
    	if in.ScaleIO != nil {
    		in, out := &in.ScaleIO, &out.ScaleIO
    		*out = new(ScaleIOPersistentVolumeSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Local != nil {
    		in, out := &in.Local, &out.Local
    		*out = new(LocalVolumeSource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    			scaleDownStabilizationWindowSeconds: 3 * 60,
    		},
    		{
    			// we can reuse only the first recommendation element
    			// as the scale up delay = 150 (set in test), scale down delay = 300 (by default)
    			// hence, only the first recommendation is obsolete for both scale up and scale down
    			name: "scale up stabilization, reuse one of obsolete recommendation element",
    			key:  "",
    			recommendations: []timestampedRecommendation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_control_test.go

    	if err := scaleUpStatefulSetControl(set, ssc, om, invariants); err != nil {
    		t.Errorf("Failed to scale StatefulSet : %s", err)
    	}
    	var err error
    	set, err = om.setsLister.StatefulSets(set.Namespace).Get(set.Name)
    	if err != nil {
    		t.Fatalf("Error getting updated StatefulSet: %v", err)
    	}
    	if set.Status.Replicas != 4 {
    		t.Error("Failed to scale statefulset to 4 replicas")
    	}
    	if set.Status.ReadyReplicas != 4 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	{ACCMN, C_COND, C_ZREG, C_ZREG, C_VCON, C_NONE, 19, 4, 0, 0, 0},
    	{ACCMN, C_COND, C_ZREG, C_VCON, C_VCON, C_NONE, 19, 4, 0, 0, 0},
    	{AFCCMPS, C_COND, C_FREG, C_FREG, C_VCON, C_NONE, 57, 4, 0, 0, 0},
    
    	/* scaled 12-bit unsigned displacement store */
    	{AMOVB, C_ZREG, C_NONE, C_NONE, C_UAUTO4K, C_NONE, 20, 4, REGSP, 0, 0},
    	{AMOVB, C_ZREG, C_NONE, C_NONE, C_UOREG4K, C_NONE, 20, 4, 0, 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    </p>
    
    <pre>
    func (p *Point) Length() float64 {
    	return math.Sqrt(p.x * p.x + p.y * p.y)
    }
    
    func (p *Point) Scale(factor float64) {
    	p.x *= factor
    	p.y *= factor
    }
    </pre>
    
    <p>
    bind the methods <code>Length</code> and <code>Scale</code>,
    with receiver type <code>*Point</code>,
    to the base type <code>Point</code>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	})
    }
    
    type Point struct {
    	x, y int
    }
    
    // This will be index 0.
    func (p Point) AnotherMethod(scale int) int {
    	return -1
    }
    
    // This will be index 1.
    func (p Point) Dist(scale int) int {
    	//println("Point.Dist", p.x, p.y, scale)
    	return p.x*p.x*scale + p.y*p.y*scale
    }
    
    // This will be index 2.
    func (p Point) GCMethod(k int) int {
    	runtime.GC()
    	return k + p.x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

    function setup-fluentd {
      local -r dst_dir="$1"
      local -r fluentd_gcp_yaml="${dst_dir}/fluentd-gcp/fluentd-gcp-ds.yaml"
      local -r fluentd_gcp_scaler_yaml="${dst_dir}/fluentd-gcp/scaler-deployment.yaml"
      # Ingest logs against new resources like "k8s_container" and "k8s_node" if
      # LOGGING_STACKDRIVER_RESOURCE_TYPES is "new".
      # Ingest logs against old resources like "gke_container" and "gce_instance" if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top