本文整理匯總了Golang中github.com/juju/juju/tools.Filter.Number方法的典型用法代碼示例。如果您正苦於以下問題:Golang Filter.Number方法的具體用法?Golang Filter.Number怎麽用?Golang Filter.Number使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/juju/juju/tools.Filter
的用法示例。
在下文中一共展示了Filter.Number方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: findBootstrapTools
// findBootstrapTools returns a tools.List containing only those tools with
// which it would be reasonable to launch an environment's first machine,
// given the supplied constraints. If a specific agent version is not requested,
// all tools matching the current major.minor version are chosen.
func findBootstrapTools(env environs.Environ, vers *version.Number, arch *string) (list coretools.List, err error) {
// Construct a tools filter.
cliVersion := version.Current.Number
var filter coretools.Filter
if arch != nil {
filter.Arch = *arch
}
if vers != nil {
filter.Number = *vers
}
stream := envtools.PreferredStream(vers, env.Config().Development(), env.Config().AgentStream())
return findTools(env, cliVersion.Major, cliVersion.Minor, stream, filter)
}
示例2: findBootstrapTools
// findBootstrapTools returns a tools.List containing only those tools with
// which it would be reasonable to launch an environment's first machine,
// given the supplied constraints. If a specific agent version is not requested,
// all tools matching the current major.minor version are chosen.
func findBootstrapTools(env environs.Environ, vers *version.Number, arch *string) (list coretools.List, err error) {
// Construct a tools filter.
cliVersion := version.Current.Number
var filter coretools.Filter
if arch != nil {
filter.Arch = *arch
}
if vers != nil {
// If we already have an explicit agent version set, we're done.
filter.Number = *vers
return findTools(env, cliVersion.Major, cliVersion.Minor, filter)
}
return findTools(env, cliVersion.Major, cliVersion.Minor, filter)
}
示例3: findBootstrapTools
// findBootstrapTools returns a tools.List containing only those tools with
// which it would be reasonable to launch an environment's first machine,
// given the supplied constraints. If a specific agent version is not requested,
// all tools matching the current major.minor version are chosen.
func findBootstrapTools(env environs.Environ, vers *version.Number, arch *string, dev bool) (list coretools.List, err error) {
// Construct a tools filter.
cliVersion := version.Current.Number
var filter coretools.Filter
if arch != nil {
filter.Arch = *arch
}
if vers != nil {
// If we already have an explicit agent version set, we're done.
filter.Number = *vers
return findTools(env, cliVersion.Major, cliVersion.Minor, filter, false)
}
if !dev {
logger.Infof("filtering tools by released version")
filter.Released = true
}
return findTools(env, cliVersion.Major, cliVersion.Minor, filter, false)
}
示例4: FindBootstrapTools
// FindBootstrapTools returns a ToolsList containing only those tools with
// which it would be reasonable to launch an environment's first machine, given the supplied constraints.
// If a specific agent version is not requested, all tools matching the current major.minor version are chosen.
func FindBootstrapTools(cloudInst environs.ConfigGetter, params BootstrapToolsParams) (list coretools.List, err error) {
// Construct a tools filter.
cfg := cloudInst.Config()
cliVersion := version.Current.Number
filter := coretools.Filter{
Series: params.Series,
Arch: stringOrEmpty(params.Arch),
}
if params.Version != nil {
// If we already have an explicit agent version set, we're done.
filter.Number = *params.Version
return bootstrapFindTools(cloudInst, cliVersion.Major, cliVersion.Minor, filter, params.AllowRetry)
}
if dev := cliVersion.IsDev() || cfg.Development(); !dev {
logger.Infof("filtering tools by released version")
filter.Released = true
}
return bootstrapFindTools(cloudInst, cliVersion.Major, cliVersion.Minor, filter, params.AllowRetry)
}