Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CrV1 (0.03 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/clientset.go

    type Clientset struct {
    	*discovery.DiscoveryClient
    	crV1 *crv1.CrV1Client
    }
    
    // CrV1 retrieves the CrV1Client
    func (c *Clientset) CrV1() crv1.CrV1Interface {
    	return c.crV1
    }
    
    // Discovery retrieves the DiscoveryClient
    func (c *Clientset) Discovery() discovery.DiscoveryInterface {
    	if c == nil {
    		return nil
    	}
    	return c.DiscoveryClient
    }
    
    // NewForConfig creates a new Clientset for the given config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 18:26:20 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/fake/clientset_generated.go

    }
    
    func (c *Clientset) Tracker() testing.ObjectTracker {
    	return c.tracker
    }
    
    var (
    	_ clientset.Interface = &Clientset{}
    	_ testing.FakeClient  = &Clientset{}
    )
    
    // CrV1 retrieves the CrV1Client
    func (c *Clientset) CrV1() crv1.CrV1Interface {
    	return &fakecrv1.FakeCrV1{Fake: &c.Fake}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 09 06:03:32 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/utils.go

    	switch kind {
    	// Group=cr.example.apiextensions.k8s.io, Version=v1
    	case v1.SchemeGroupVersion.WithKind("Example"):
    		return &crv1.ExampleApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("ExampleSpec"):
    		return &crv1.ExampleSpecApplyConfiguration{}
    	case v1.SchemeGroupVersion.WithKind("ExampleStatus"):
    		return &crv1.ExampleStatusApplyConfiguration{}
    
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 10:01:37 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/cr/v1/example.go

    					tweakListOptions(&options)
    				}
    				return client.CrV1().Examples(namespace).List(context.TODO(), options)
    			},
    			WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
    				if tweakListOptions != nil {
    					tweakListOptions(&options)
    				}
    				return client.CrV1().Examples(namespace).Watch(context.TODO(), options)
    			},
    		},
    		&crv1.Example{},
    		resyncPeriod,
    		indexers,
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/scheme/register.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package scheme
    
    import (
    	crv1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	schema "k8s.io/apimachinery/pkg/runtime/schema"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/fake/register.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package fake
    
    import (
    	crv1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	schema "k8s.io/apimachinery/pkg/runtime/schema"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package v1
    
    import (
    	"context"
    	json "encoding/json"
    	"fmt"
    	"time"
    
    	v1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1"
    	crv1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/cr/v1"
    	scheme "k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/scheme"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_example.go

    */
    
    // Code generated by client-gen. DO NOT EDIT.
    
    package fake
    
    import (
    	"context"
    	json "encoding/json"
    	"fmt"
    
    	v1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1"
    	crv1 "k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/cr/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	labels "k8s.io/apimachinery/pkg/labels"
    	types "k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top