本文整理汇总了Golang中github.com/openshift/origin/pkg/route/api.RouteIngressCondition类的典型用法代码示例。如果您正苦于以下问题:Golang RouteIngressCondition类的具体用法?Golang RouteIngressCondition怎么用?Golang RouteIngressCondition使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了RouteIngressCondition类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: autoConvert_v1_RouteIngressCondition_To_api_RouteIngressCondition
func autoConvert_v1_RouteIngressCondition_To_api_RouteIngressCondition(in *RouteIngressCondition, out *api.RouteIngressCondition, s conversion.Scope) error {
out.Type = api.RouteIngressConditionType(in.Type)
out.Status = pkg_api.ConditionStatus(in.Status)
out.Reason = in.Reason
out.Message = in.Message
out.LastTransitionTime = (*unversioned.Time)(unsafe.Pointer(in.LastTransitionTime))
return nil
}
开发者ID:xgwang-zte,项目名称:origin,代码行数:8,代码来源:zz_generated.conversion.go
示例2: autoConvert_v1_RouteIngressCondition_To_api_RouteIngressCondition
func autoConvert_v1_RouteIngressCondition_To_api_RouteIngressCondition(in *RouteIngressCondition, out *route_api.RouteIngressCondition, s conversion.Scope) error {
out.Type = route_api.RouteIngressConditionType(in.Type)
out.Status = api.ConditionStatus(in.Status)
out.Reason = in.Reason
out.Message = in.Message
out.LastTransitionTime = in.LastTransitionTime
return nil
}
开发者ID:Xmagicer,项目名称:origin,代码行数:8,代码来源:conversion_generated.go
示例3: autoConvert_v1_RouteIngressCondition_To_api_RouteIngressCondition
func autoConvert_v1_RouteIngressCondition_To_api_RouteIngressCondition(in *RouteIngressCondition, out *route_api.RouteIngressCondition, s conversion.Scope) error {
out.Type = route_api.RouteIngressConditionType(in.Type)
out.Status = api.ConditionStatus(in.Status)
out.Reason = in.Reason
out.Message = in.Message
if in.LastTransitionTime != nil {
in, out := &in.LastTransitionTime, &out.LastTransitionTime
*out = new(unversioned.Time)
if err := api.Convert_unversioned_Time_To_unversioned_Time(*in, *out, s); err != nil {
return err
}
} else {
out.LastTransitionTime = nil
}
return nil
}
开发者ID:rhamilto,项目名称:origin,代码行数:16,代码来源:conversion_generated.go
示例4: autoConvert_v1_RouteIngressCondition_To_api_RouteIngressCondition
func autoConvert_v1_RouteIngressCondition_To_api_RouteIngressCondition(in *RouteIngressCondition, out *route_api.RouteIngressCondition, s conversion.Scope) error {
if defaulting, found := s.DefaultingInterface(reflect.TypeOf(*in)); found {
defaulting.(func(*RouteIngressCondition))(in)
}
out.Type = route_api.RouteIngressConditionType(in.Type)
out.Status = api.ConditionStatus(in.Status)
out.Reason = in.Reason
out.Message = in.Message
if in.LastTransitionTime != nil {
in, out := &in.LastTransitionTime, &out.LastTransitionTime
*out = new(unversioned.Time)
if err := api.Convert_unversioned_Time_To_unversioned_Time(*in, *out, s); err != nil {
return err
}
} else {
out.LastTransitionTime = nil
}
return nil
}
开发者ID:RomainVabre,项目名称:origin,代码行数:19,代码来源:conversion_generated.go
示例5: setIngressCondition
// setIngressCondition records the condition on the ingress, returning true if the ingress was changed and
// false if no modification was made.
func setIngressCondition(ingress *routeapi.RouteIngress, condition routeapi.RouteIngressCondition) bool {
for _, existing := range ingress.Conditions {
//existing.LastTransitionTime = nil
if existing == condition {
return false
}
}
now := nowFn()
condition.LastTransitionTime = &now
ingress.Conditions = []routeapi.RouteIngressCondition{condition}
return true
}
开发者ID:enoodle,项目名称:origin,代码行数:14,代码来源:status.go
示例6: setIngressCondition
// setIngressCondition records the condition on the ingress, returning true if the ingress was changed and
// false if no modification was made.
func setIngressCondition(ingress *routeapi.RouteIngress, condition routeapi.RouteIngressCondition) bool {
for _, existing := range ingress.Conditions {
// ensures that the comparison is based on the actual value, not the time
existing.LastTransitionTime = condition.LastTransitionTime
if existing == condition {
return false
}
}
now := nowFn()
condition.LastTransitionTime = &now
ingress.Conditions = []routeapi.RouteIngressCondition{condition}
return true
}
开发者ID:carriercomm,项目名称:origin,代码行数:15,代码来源:status.go
示例7: setIngressCondition
// setIngressCondition records the condition on the ingress, returning true if the ingress was changed and
// false if no modification was made (or the only modification would have been to update a time).
func setIngressCondition(ingress *routeapi.RouteIngress, condition routeapi.RouteIngressCondition) bool {
for i, existing := range ingress.Conditions {
// ensures that the comparison is based on the actual value, not the time
existing.LastTransitionTime = condition.LastTransitionTime
if existing == condition {
// This will always be the case if we're receiving an update on the host
// value (or the like), since findOrCreateIngress sets that for us. We
// still need to set the last-touched time so that others can tell we've
// modified this Ingress value
now := nowFn()
ingress.Conditions[i].LastTransitionTime = &now
return false
}
}
now := nowFn()
condition.LastTransitionTime = &now
ingress.Conditions = []routeapi.RouteIngressCondition{condition}
return true
}
开发者ID:Xmagicer,项目名称:origin,代码行数:21,代码来源:status.go
注:本文中的github.com/openshift/origin/pkg/route/api.RouteIngressCondition类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论