Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetIntVal (0.17 sec)

  1. operator/pkg/apis/istio/v1alpha1/value_types_json.go

    	return this.UnmarshalJSON(value)
    }
    
    func (this *IntOrString) ToKubernetes() intstr.IntOrString {
    	if this.IntVal != nil {
    		return intstr.FromInt32(this.GetIntVal().GetValue())
    	}
    	return intstr.FromString(this.GetStrVal().GetValue())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    }
    
    func (x *IntOrString) GetType() int64 {
    	if x != nil {
    		return x.Type
    	}
    	return 0
    }
    
    func (x *IntOrString) GetIntVal() *wrapperspb.Int32Value {
    	if x != nil {
    		return x.IntVal
    	}
    	return nil
    }
    
    func (x *IntOrString) GetStrVal() *wrapperspb.StringValue {
    	if x != nil {
    		return x.StrVal
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top