本文整理汇总了Golang中github.com/appc/acpush/Godeps/_workspace/src/github.com/appc/spec/schema/types.ACName类的典型用法代码示例。如果您正苦于以下问题:Golang ACName类的具体用法?Golang ACName怎么用?Golang ACName使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ACName类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: Get
// Get retrieves an app by the specified name from the AppList; if there is
// no such app, nil is returned. The returned *RuntimeApp MUST be considered
// read-only.
func (al AppList) Get(name types.ACName) *RuntimeApp {
for _, a := range al {
if name.Equals(a.Name) {
aa := a
return &aa
}
}
return nil
}
示例2: RelAppPath
// RelAppPath returns the path of an app relative to the stage1 chroot.
func RelAppPath(appName types.ACName) string {
return filepath.Join(stage2Dir, appName.String())
}
示例3: AppPath
// AppPath returns the path to an app's rootfs.
func AppPath(root string, appName types.ACName) string {
return filepath.Join(AppsPath(root), appName.String())
}