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


Golang testclient.NewWatchAction函数代码示例

本文整理汇总了Golang中k8s/io/kubernetes/pkg/client/unversioned/testclient.NewWatchAction函数的典型用法代码示例。如果您正苦于以下问题:Golang NewWatchAction函数的具体用法?Golang NewWatchAction怎么用?Golang NewWatchAction使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: Watch

func (c *FakeBuilds) Watch(label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewWatchAction("builds", c.Namespace, label, field, resourceVersion))
}
开发者ID:johnmccawley,项目名称:origin,代码行数:3,代码来源:fake_builds.go

示例2: Watch

func (c *FakePolicies) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewWatchAction("policies", c.Namespace, opts))
}
开发者ID:RomainVabre,项目名称:origin,代码行数:3,代码来源:fake_policies.go

示例3: Watch

func (c *FakeBackingServiceInstances) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewWatchAction("backingserviceinstances", c.Namespace, opts))
}
开发者ID:asiainfoLDP,项目名称:datafactory,代码行数:3,代码来源:fake_backingserviceinsts.go

示例4: Watch

func (c *FakeBuildConfigs) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewWatchAction("buildconfigs", c.Namespace, opts))
}
开发者ID:RomainVabre,项目名称:origin,代码行数:3,代码来源:fake_buildconfigs.go

示例5: Watch

func (c *FakeRoleBindingRestrictions) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewWatchAction("rolebindingrestrictions", c.Namespace, opts))
}
开发者ID:php-coder,项目名称:origin,代码行数:3,代码来源:fake_rolebindingrestriction.go

示例6: Watch

func (c *FakeEgressNetworkPolicy) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewWatchAction("egressnetworkpolicies", c.Namespace, opts))
}
开发者ID:juanluisvaladas,项目名称:origin,代码行数:3,代码来源:fake_egressnetworkpolicy.go

示例7: Watch

func (c *FakeImageStreams) Watch(opts kapi.ListOptions) (watch.Interface, error) {
	return c.Fake.InvokesWatch(ktestclient.NewWatchAction("imagestreams", c.Namespace, opts))
}
开发者ID:RomainVabre,项目名称:origin,代码行数:3,代码来源:fake_imagestreams.go


注:本文中的k8s/io/kubernetes/pkg/client/unversioned/testclient.NewWatchAction函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。