Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetStrVal (0.1 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

    		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
    	}
    	return nil
    }
    
    var File_pkg_apis_istio_v1alpha1_values_types_proto protoreflect.FileDescriptor
    
    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