Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 138 for Categories (0.24 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.pb.go

    				i = encodeVarintGenerated(dAtA, i, uint64(size))
    			}
    			i--
    			dAtA[i] = 0x42
    		}
    	}
    	if len(m.Categories) > 0 {
    		for iNdEx := len(m.Categories) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Categories[iNdEx])
    			copy(dAtA[i:], m.Categories[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Categories[iNdEx])))
    			i--
    			dAtA[i] = 0x3a
    		}
    	}
    	if len(m.ShortNames) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. pkg/registry/core/replicationcontroller/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"rc"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a replication controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. pkg/registry/apps/replicaset/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"rs"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a ReplicaSet
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"po"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // BindingREST implements the REST endpoint for binding pods to nodes when etcd is in use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. pkg/registry/apps/statefulset/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of an statefulSet
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. pkg/registry/apps/deployment/storage/storage.go

    func (r *REST) ShortNames() []string {
    	return []string{"deploy"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    func (r *REST) Categories() []string {
    	return []string{"all"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a deployment
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/zz_generated.deepcopy.go

    	*out = *in
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Categories != nil {
    		in, out := &in.Categories, &out.Categories
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    		namesAcceptedCondition.Reason = "ListKindConflict"
    		namesAcceptedCondition.Message = err.Error()
    	} else {
    		newNames.ListKind = requestedNames.ListKind
    	}
    
    	newNames.Categories = requestedNames.Categories
    
    	// if we haven't changed the condition, then our names must be good.
    	if namesAcceptedCondition.Status == apiextensionsv1.ConditionUnknown {
    		namesAcceptedCondition.Status = apiextensionsv1.ConditionTrue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	ShortNames() []string
    }
    
    // CategoriesProvider allows a resource to specify which groups of resources (categories) it's part of. Categories can
    // be used by API clients to refer to a batch of resources by using a single name (e.g. "all" could translate to "pod,rc,svc,...").
    type CategoriesProvider interface {
    	Categories() []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.deepcopy.go

    	*out = *in
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Categories != nil {
    		in, out := &in.Categories, &out.Categories
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top