本文整理汇总了Golang中github.com/cloudfoundry-incubator/pat/config.Config.StringVar方法的典型用法代码示例。如果您正苦于以下问题:Golang Config.StringVar方法的具体用法?Golang Config.StringVar怎么用?Golang Config.StringVar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cloudfoundry-incubator/pat/config.Config
的用法示例。
在下文中一共展示了Config.StringVar方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: InitCommandLineFlags
func InitCommandLineFlags(config config.Config) {
config.StringVar(¶ms.app, "app", "assets/dora", "filepath to app, defaults to provided dora in assets")
config.StringVar(¶ms.manifest, "app:manifest", "", "filepath to cf manifest for the app")
config.IntVar(¶ms.iterations, "iterations", 1, "number of pushes to attempt")
config.StringVar(¶ms.concurrency, "concurrency", "1", "number of workers to execute the workload in parallel, can be static or ramping up, i.e. 1..3")
config.IntVar(¶ms.concurrencyStepTime, "concurrency:timeBetweenSteps", 60, "seconds between adding additonal workers when ramping works up")
config.BoolVar(¶ms.silent, "silent", false, "true to run silently and exit without interaction when finished")
config.StringVar(¶ms.workload, "workload", "cf:push", "a comma-separated list of operations a user should issue (use -list-workloads to see available workload options)")
config.IntVar(¶ms.interval, "interval", 0, "repeat a workload every n seconds, to be used with -stop")
config.IntVar(¶ms.stop, "stop", 0, "repeat a repeating interval until n seconds, to be used with -interval")
config.BoolVar(¶ms.listWorkloads, "list-workloads", false, "Lists the available workloads")
config.StringVar(¶ms.restTarget, "rest:target", "", "the target for the REST api")
config.StringVar(¶ms.restUser, "rest:username", "", "username for REST api")
config.StringVar(¶ms.restPass, "rest:password", "", "password for REST api")
config.StringVar(¶ms.restSpace, "rest:space", "dev", "space to target for REST api")
benchmarker.DescribeParameters(config)
store.DescribeParameters(config)
}
示例2: InitCommandLineFlags
func InitCommandLineFlags(flags config.Config) {
flags.StringVar(¶ms.path, "logging:file", "", "A file to log to, or empty to log to STDOUT")
flags.StringVar(¶ms.level, "logging:level", "INFO", "The level to log at, one of all, debug2, debug1, debug, info, warn, error, fatal, off")
}
示例3: DescribeParameters
func DescribeParameters(config config.Config) {
config.StringVar(¶ms.csvDir, "csv-dir", "output/csvs", "Directory to Store CSVs")
config.BoolVar(¶ms.useRedis, "use-redis-store", false, "True if redis should be used (requires the -redis-host, -redis-port and -redis-password arguments)")
redis.DescribeParameters(config)
}