Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for PodTemplateList (0.28 sec)

  1. pkg/api/testing/defaulting_test.go

    		{Group: "", Version: "v1", Kind: "PodTemplate"}:                                                            {},
    		{Group: "", Version: "v1", Kind: "PodTemplateList"}:                                                        {},
    		{Group: "", Version: "v1", Kind: "ReplicationController"}:                                                  {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *PodTemplateList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.PodTemplateList)(nil), (*core.PodTemplateList)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_PodTemplateList_To_core_PodTemplateList(a.(*v1.PodTemplateList), b.(*core.PodTemplateList), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    func (in *PodTemplateList) DeepCopy() *PodTemplateList {
    	if in == nil {
    		return nil
    	}
    	out := new(PodTemplateList)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *PodTemplateList) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *PodTemplateList) DeepCopy() *PodTemplateList {
    	if in == nil {
    		return nil
    	}
    	out := new(PodTemplateList)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *PodTemplateList) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *PodTemplateList) Reset()      { *m = PodTemplateList{} }
    func (*PodTemplateList) ProtoMessage() {}
    func (*PodTemplateList) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{153}
    }
    func (m *PodTemplateList) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *PodTemplateList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	row.Cells = append(row.Cells, obj.Name, names, images, labels.FormatLabels(obj.Template.Labels))
    	return []metav1.TableRow{row}, nil
    }
    
    func printPodTemplateList(list *api.PodTemplateList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(list.Items))
    	for i := range list.Items {
    		r, err := printPodTemplate(&list.Items[i], options)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/api__v1_openapi.json

              {
                "group": "",
                "kind": "PodTemplate",
                "version": "v1"
              }
            ]
          },
          "io.k8s.api.core.v1.PodTemplateList": {
            "description": "PodTemplateList is a list of PodTemplates.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional PodTemplateSpec template = 2;
    }
    
    // PodTemplateList is a list of PodTemplates.
    message PodTemplateList {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// +optional
    	Template PodTemplateSpec
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // PodTemplateList is a list of PodTemplates.
    type PodTemplateList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    
    	Items []PodTemplate
    }
    
    // ReplicationControllerSpec is the specification of a replication controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top