Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for uintValue (0.26 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    			if err != nil {
    				return 0, err
    			}
    			i -= size
    			i = encodeVarintGenerated(dAtA, i, uint64(size))
    		}
    		i--
    		dAtA[i] = 0x42
    	}
    	if m.IntValue != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.IntValue))
    		i--
    		dAtA[i] = 0x38
    	}
    	if m.QuantityValue != nil {
    		{
    			size, err := m.QuantityValue.MarshalToSizedBuffer(dAtA[:i])
    			if err != nil {
    				return 0, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	floatValue           func(*state, *types.Type, float64) *ssa.Value
    	intValue             func(*state, *types.Type, int64) *ssa.Value
    	cutoff               uint64
    }
    
    var f32_u64 = f2uCvtTab{
    	ltf:        ssa.OpLess32F,
    	cvt2U:      ssa.OpCvt32Fto64,
    	subf:       ssa.OpSub32F,
    	or:         ssa.OpOr64,
    	floatValue: (*state).constFloat32,
    	intValue:   (*state).constInt64,
    	cutoff:     1 << 63,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	if port.Type == intstr.Int {
    		for _, msg := range validation.IsValidPortNum(port.IntValue()) {
    			allErrs = append(allErrs, field.Invalid(fldPath, port.IntValue(), msg))
    		}
    	} else if port.Type == intstr.String {
    		for _, msg := range validation.IsValidPortName(port.StrVal) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top