本文整理汇总了Golang中github.com/aelsabbahy/goss/system.System.NewInterface方法的典型用法代码示例。如果您正苦于以下问题:Golang System.NewInterface方法的具体用法?Golang System.NewInterface怎么用?Golang System.NewInterface使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/aelsabbahy/goss/system.System
的用法示例。
在下文中一共展示了System.NewInterface方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: AppendSysResource
func (r InterfaceMap) AppendSysResource(sr string, sys *system.System, config util.Config) (*Interface, error) {
sysres := sys.NewInterface(sr, sys, config)
res, err := NewInterface(sysres, config)
if err != nil {
return nil, err
}
if old_res, ok := r[res.ID()]; ok {
res.Title = old_res.Title
res.Meta = old_res.Meta
}
r[res.ID()] = res
return res, nil
}
示例2: AppendSysResourceIfExists
func (r InterfaceMap) AppendSysResourceIfExists(sr string, sys *system.System) (*Interface, system.Interface, bool) {
sysres := sys.NewInterface(sr, sys, util.Config{})
// FIXME: Do we want to be silent about errors?
res, _ := NewInterface(sysres, util.Config{})
if e, _ := sysres.Exists(); e != true {
return res, sysres, false
}
if old_res, ok := r[res.ID()]; ok {
res.Title = old_res.Title
res.Meta = old_res.Meta
}
r[res.ID()] = res
return res, sysres, true
}
示例3: Validate
func (i *Interface) Validate(sys *system.System) []TestResult {
skip := false
sysInterface := sys.NewInterface(i.Name, sys, util.Config{})
var results []TestResult
results = append(results, ValidateValue(i, "exists", i.Exists, sysInterface.Exists, skip))
if shouldSkip(results) {
skip = true
}
if i.Addrs != nil {
results = append(results, ValidateValue(i, "addrs", i.Addrs, sysInterface.Addrs, skip))
}
return results
}