当前位置: 首页>>代码示例>>Golang>>正文


Golang Config.BoolVar方法代码示例

本文整理汇总了Golang中github.com/cloudfoundry-incubator/pat/config.Config.BoolVar方法的典型用法代码示例。如果您正苦于以下问题:Golang Config.BoolVar方法的具体用法?Golang Config.BoolVar怎么用?Golang Config.BoolVar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/cloudfoundry-incubator/pat/config.Config的用法示例。


在下文中一共展示了Config.BoolVar方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: InitCommandLineFlags

func InitCommandLineFlags(config config.Config) {
	config.StringVar(&params.app, "app", "assets/dora", "filepath to app, defaults to provided dora in assets")
	config.StringVar(&params.manifest, "app:manifest", "", "filepath to cf manifest for the app")
	config.IntVar(&params.iterations, "iterations", 1, "number of pushes to attempt")
	config.StringVar(&params.concurrency, "concurrency", "1", "number of workers to execute the workload in parallel, can be static or ramping up, i.e. 1..3")
	config.IntVar(&params.concurrencyStepTime, "concurrency:timeBetweenSteps", 60, "seconds between adding additonal workers when ramping works up")
	config.BoolVar(&params.silent, "silent", false, "true to run silently and exit without interaction when finished")
	config.StringVar(&params.workload, "workload", "cf:push", "a comma-separated list of operations a user should issue (use -list-workloads to see available workload options)")
	config.IntVar(&params.interval, "interval", 0, "repeat a workload every n seconds, to be used with -stop")
	config.IntVar(&params.stop, "stop", 0, "repeat a repeating interval until n seconds, to be used with -interval")
	config.BoolVar(&params.listWorkloads, "list-workloads", false, "Lists the available workloads")
	config.StringVar(&params.restTarget, "rest:target", "", "the target for the REST api")
	config.StringVar(&params.restUser, "rest:username", "", "username for REST api")
	config.StringVar(&params.restPass, "rest:password", "", "password for REST api")
	config.StringVar(&params.restSpace, "rest:space", "dev", "space to target for REST api")
	benchmarker.DescribeParameters(config)
	store.DescribeParameters(config)
}
开发者ID:nkuacac,项目名称:pat,代码行数:18,代码来源:cmdline.go

示例2: DescribeParameters

func DescribeParameters(config config.Config) {
	config.StringVar(&params.csvDir, "csv-dir", "output/csvs", "Directory to Store CSVs")
	config.BoolVar(&params.useRedis, "use-redis-store", false, "True if redis should be used (requires the -redis-host, -redis-port and -redis-password arguments)")
	redis.DescribeParameters(config)
}
开发者ID:nkuacac,项目名称:pat,代码行数:5,代码来源:config.go


注:本文中的github.com/cloudfoundry-incubator/pat/config.Config.BoolVar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。