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