Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,483 for takes (0.32 sec)

  1. pkg/apis/authentication/v1beta1/register.go

    	AddToScheme = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addDefaultingFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 24 18:21:00 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addKnownTypes)
    }
    
    func addKnownTypes(scheme *runtime.Scheme) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 30 07:56:39 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  3. pkg/volume/util/volumepathhandler/volume_path_handler_unsupported.go

    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/types"
    )
    
    // AttachFileDevice takes a path to a regular file and makes it available as an
    // attached block device.
    func (v VolumePathHandler) AttachFileDevice(path string) (string, error) {
    	return "", fmt.Errorf("AttachFileDevice not supported for this build.")
    }
    
    // DetachFileDevice takes a path to the attached block device and
    // detach it from block device.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/v2beta1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addDefaultingFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 24 18:21:00 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  5. pkg/apis/rbac/v1beta1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addDefaultingFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 18:30:51 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/v2/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addDefaultingFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 02:34:54 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  7. pkg/apis/policy/v1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(RegisterDefaults)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 15:29:11 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. pkg/apis/policy/v1beta1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(RegisterDefaults)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 18:30:51 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  9. pkg/apis/rbac/v1/register.go

    	AddToScheme        = localSchemeBuilder.AddToScheme
    )
    
    func init() {
    	// We only register manually written functions here. The registration of the
    	// generated functions takes place in the generated files. The separation
    	// makes the code compile even when the generated files are missing.
    	localSchemeBuilder.Register(addDefaultingFuncs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 21:04:54 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_example.go

    type FakeExamples struct {
    	Fake *FakeCrV1
    	ns   string
    }
    
    var examplesResource = v1.SchemeGroupVersion.WithResource("examples")
    
    var examplesKind = v1.SchemeGroupVersion.WithKind("Example")
    
    // Get takes name of the example, and returns the corresponding example object, and an error if there is any.
    func (c *FakeExamples) Get(ctx context.Context, name string, options metav1.GetOptions) (result *v1.Example, err error) {
    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