本文整理匯總了Golang中github.com/keybase/kbfs/libkbfs.Config.SharingBeforeSignupEnabled方法的典型用法代碼示例。如果您正苦於以下問題:Golang Config.SharingBeforeSignupEnabled方法的具體用法?Golang Config.SharingBeforeSignupEnabled怎麽用?Golang Config.SharingBeforeSignupEnabled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/keybase/kbfs/libkbfs.Config
的用法示例。
在下文中一共展示了Config.SharingBeforeSignupEnabled方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: getNode
// Returns a nil node if p doesn't have type tlfPath.
func (p kbfsPath) getNode(ctx context.Context, config libkbfs.Config) (n libkbfs.Node, ei libkbfs.EntryInfo, err error) {
if p.pathType != tlfPath {
ei := libkbfs.EntryInfo{
Type: libkbfs.Dir,
}
return nil, ei, nil
}
var h *libkbfs.TlfHandle
name := p.tlfName
outer:
for {
h, err = libkbfs.ParseTlfHandle(
ctx, config.KBPKI(), name, p.public,
config.SharingBeforeSignupEnabled())
switch err := err.(type) {
case nil:
// No error.
break outer
case libkbfs.TlfNameNotCanonical:
// Non-canonical name, so try again.
name = err.NameToTry
default:
// Some other error.
return nil, libkbfs.EntryInfo{}, err
}
}
n, ei, err =
config.KBFSOps().GetOrCreateRootNode(
ctx, h, libkbfs.MasterBranch)
for _, component := range p.tlfComponents {
cn, cei, err := config.KBFSOps().Lookup(ctx, n, component)
if err != nil {
return nil, libkbfs.EntryInfo{}, err
}
n = cn
ei = cei
}
return n, ei, nil
}