Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 264 for scaleTo (0.28 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/hack/update-codegen.sh

        if [[ "${UPDATE_API_KNOWN_VIOLATIONS:-}" == "true" ]]; then
            update_report="--update-report"
        fi
    fi
    
    kube::codegen::gen_openapi \
        --extra-pkgs k8s.io/api/autoscaling/v1 `# needed for Scale type` \
        --output-dir "${SCRIPT_ROOT}/pkg/generated/openapi" \
        --output-pkg "${THIS_PKG}/pkg/generated/openapi" \
        --report-filename "${report_filename:-"/dev/null"}" \
        ${update_report:+"${update_report}"} \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Scale) APILifecycleIntroduced() (major, minor int) {
    	return 1, 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_test.go

    			t.Errorf(onPolicy("Failed to scale StatefulSet back up: %v", err))
    		}
    		set, err = om.setsLister.StatefulSets(set.Namespace).Get(set.Name)
    		if err != nil {
    			t.Errorf(onPolicy("Could not get scaled down StatefulSet: %v", err))
    		}
    		if set.Status.Replicas != 3 {
    			t.Errorf(onPolicy("Failed to scale set back up once PVC was deleted"))
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/extensions/v1beta1/generated.proto

      optional ScaleSpec spec = 2;
    
      // current status of the scale. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status. Read-only.
      // +optional
      optional ScaleStatus status = 3;
    }
    
    // describes the attributes of a scale subresource
    message ScaleSpec {
      // desired number of instances for the scaled object.
      // +optional
      optional int32 replicas = 1;
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    	}
    	return intOrPercent
    }
    
    // GetScaledValueFromIntOrPercent is meant to replace GetValueFromIntOrPercent.
    // This method returns a scaled value from an IntOrString type. If the IntOrString
    // is a percentage string value it's treated as a percentage and scaled appropriately
    // in accordance to the total, if it's an int value it's treated as a simple value and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    			svg[loc[1]:]
    	}
    
    	if loc := graphID.FindStringIndex(svg); loc != nil {
    		svg = svg[:loc[0]] +
    			`<script type="text/ecmascript"><![CDATA[` + svgpan.JSSource + `]]></script>` +
    			`<g id="viewport" transform="scale(0.5,0.5) translate(0,0)">` +
    			svg[loc[0]:]
    	}
    
    	if loc := svgClose.FindStringIndex(svg); loc != nil {
    		svg = svg[:loc[0]] +
    			`</g>` +
    			svg[loc[0]:]
    	}
    
    	return svg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/runtime/vdso_freebsd.go

    		gen := atomic.Load(&th.gen) // atomic_load_acq_32
    		bt = th.offset
    
    		if tc, ok := th.getTimecounter(); !ok {
    			return zeroBintime
    		} else {
    			delta := (tc - th.offset_count) & th.counter_mask
    			bt.AddX(th.scale * uint64(delta))
    		}
    		if abs {
    			bt.Add(&th.boottime)
    		}
    
    		atomic.Load(&binuptimeDummy) // atomic_thread_fence_acq()
    		if curr == timekeepSharedPage.current && gen != 0 && gen == th.gen {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume
    message ScaleIOPersistentVolumeSource {
      // gateway is the host address of the ScaleIO API Gateway.
      optional string gateway = 1;
    
      // system is the name of the storage system as configured in ScaleIO.
      optional string system = 2;
    
      // secretRef references to the secret for ScaleIO user and other
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	Kind *AzureDataDiskKind
    }
    
    // ScaleIOVolumeSource represents a persistent ScaleIO volume
    type ScaleIOVolumeSource struct {
    	// The host address of the ScaleIO API Gateway.
    	Gateway string
    	// The name of the storage system as configured in ScaleIO.
    	System string
    	// SecretRef references to the secret for ScaleIO user and other
    	// sensitive information. If this is not provided, Login operation will fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":                 "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume",
    	"gateway":          "gateway is the host address of the ScaleIO API Gateway.",
    	"system":           "system is the name of the storage system as configured in ScaleIO.",
    	"secretRef":        "secretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top