本文整理汇总了Golang中github.com/cloudfoundry-incubator/pat/config.Config类的典型用法代码示例。如果您正苦于以下问题:Golang Config类的具体用法?Golang Config怎么用?Golang Config使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Config类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1:
BeforeEach(func() {
experiments := []*DummyExperiment{&DummyExperiment{"a"}, &DummyExperiment{"b"}, &DummyExperiment{"c"}}
lab = &DummyLab{}
lab.experiments = experiments
http.DefaultServeMux = http.NewServeMux()
workloadContext = context.New()
})
JustBeforeEach(func() {
ServeWithLab(lab)
})
Describe("VCAP_APP_PORT", func() {
var (
listen string
flags config.Config
)
BeforeEach(func() {
flags = config.NewConfig()
os.Clearenv()
InitCommandLineFlags(flags)
ListenAndServe = func(bind string) error {
listen = bind
return nil
}
})
Context("When VCAP_APP_PORT does not exist", func() {
BeforeEach(func() {
os.Clearenv()
开发者ID:nkuacac,项目名称:pat,代码行数:31,代码来源:server_test.go
示例2:
"io"
"github.com/cloudfoundry-incubator/pat/config"
"github.com/cloudfoundry-incubator/pat/redis"
"github.com/cloudfoundry-incubator/pat/workloads"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Config", func() {
var (
flags config.Config
args []string
localWorker *LocalWorker
connectionFromFactory redis.Conn
redisWorkerConn redis.Conn
redisWorker Worker
slaveFromFactory *dummySlave
slaveStarted bool
workloadList *dummyDescriberWithThreeWorkloads
)
BeforeEach(func() {
flags = config.NewConfig()
DescribeParameters(flags)
args = []string{}
localWorker = NewLocalWorker()
LocalWorkerFactory = func() *LocalWorker {
return localWorker
}
开发者ID:nkuacac,项目名称:pat,代码行数:31,代码来源:config_test.go
示例3: InitCommandLineFlags
func InitCommandLineFlags(config config.Config) {
config.EnvVar(¶ms.port, "VCAP_APP_PORT", "8080", "The port to bind to")
store.DescribeParameters(config)
benchmarker.DescribeParameters(config)
}
开发者ID:Jonty,项目名称:pat,代码行数:5,代码来源:server.go
示例4: 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")
}
开发者ID:nkuacac,项目名称:pat,代码行数:4,代码来源:config.go
示例5: 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)
}
开发者ID:nkuacac,项目名称:pat,代码行数:5,代码来源:config.go
示例6: 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)
}
开发者ID:nkuacac,项目名称:pat,代码行数:18,代码来源:cmdline.go
注:本文中的github.com/cloudfoundry-incubator/pat/config.Config类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论