Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DecimalExponent (1.37 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    // <suffix>          ::= <binarySI> | <decimalExponent> | <decimalSI>
    // <binarySI>        ::= Ki | Mi | Gi | Ti | Pi | Ei
    //
    //	(International System of units; See: http://physics.nist.gov/cuu/Units/binary.html)
    //
    // <decimalSI>       ::= m | "" | k | M | G | T | P | E
    //
    //	(Note that 1024 = 1Ki but 1000 = 1k; I didn't choose the capitalization.)
    //
    // <decimalExponent> ::= "e" <signedNumber> | "E" <signedNumber>
    // ```
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    		return types.MaybeNoSuchOverloadErr(arg)
    	}
    
    	q2, ok := other.Value().(int64)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(arg)
    	}
    
    	q2Converted := *resource.NewQuantity(q2, resource.DecimalExponent)
    
    	copy := *q
    	copy.Add(q2Converted)
    	return &apiservercel.Quantity{
    		Quantity: &copy,
    	}
    }
    
    func quantitySub(arg ref.Val, other ref.Val) ref.Val {
    	q, ok := arg.Value().(*resource.Quantity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go

    )
    
    func genericFuzzerFuncs(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(q *resource.Quantity, c fuzz.Continue) {
    			*q = *resource.NewQuantity(c.Int63n(1000), resource.DecimalExponent)
    		},
    		func(j *int, c fuzz.Continue) {
    			*j = int(c.Int31())
    		},
    		func(j **int, c fuzz.Continue) {
    			if c.RandBool() {
    				i := int(c.Int31())
    				*j = &i
    			} else {
    				*j = nil
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 15:12:26 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pkg/apis/core/fuzzer/fuzzer.go

    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(q *resource.Quantity, c fuzz.Continue) {
    			*q = *resource.NewQuantity(c.Int63n(1000), resource.DecimalExponent)
    		},
    		func(j *core.ObjectReference, c fuzz.Continue) {
    			// We have to customize the randomization of TypeMetas because their
    			// APIVersion and Kind must remain blank in memory.
    			j.APIVersion = c.RandString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top