Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for CronJobList (0.38 sec)

  1. staging/src/k8s.io/api/batch/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CronJobList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 21
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// with or without tagging. If a tag number is present, it must be valid.
    		TimeTag: cbor.DecTagOptional,
    
    		// Observed depth up to 16 in fuzzed batch/v1 CronJobList. JSON implementation limit
    		// is 10000.
    		MaxNestedLevels: 64,
    
    		MaxArrayElements: 1024,
    		MaxMapPairs:      1024,
    
    		// Indefinite-length sequences aren't produced by this serializer, but other
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
      // +optional
      optional CronJobStatus status = 3;
    }
    
    // CronJobList is a collection of cron jobs.
    message CronJobList {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	return map_CronJob
    }
    
    var map_CronJobList = map[string]string{
    	"":         "CronJobList is a collection of cron jobs.",
    	"metadata": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"items":    "items is the list of CronJobs.",
    }
    
    func (CronJobList) SwaggerDoc() map[string]string {
    	return map_CronJobList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types.go

    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.21
    
    // CronJobList is a collection of cron jobs.
    type CronJobList struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard list metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. pkg/apis/batch/types.go

    	// +optional
    	Status CronJobStatus
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // CronJobList is a collection of cron jobs.
    type CronJobList struct {
    	metav1.TypeMeta
    	// Standard list metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__batch__v1_openapi.json

              {
                "group": "batch",
                "kind": "CronJob",
                "version": "v1"
              }
            ]
          },
          "io.k8s.api.batch.v1.CronJobList": {
            "description": "CronJobList is a collection of cron jobs.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    		}
    	}
    }
    
    func TestPrintCronJobList(t *testing.T) {
    	timeZone := "LOCAL"
    	completions := int32(2)
    	suspend := false
    
    	cronJobList := batch.CronJobList{
    		Items: []batch.CronJob{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "cronjob1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    		row.Cells = append(row.Cells, names, images, metav1.FormatLabelSelector(obj.Spec.JobTemplate.Spec.Selector))
    	}
    	return []metav1.TableRow{row}, nil
    }
    
    func printCronJobList(list *batch.CronJobList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(list.Items))
    	for i := range list.Items {
    		r, err := printCronJob(&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)
  10. api/openapi-spec/swagger.json

            {
              "group": "batch",
              "kind": "CronJob",
              "version": "v1"
            }
          ]
        },
        "io.k8s.api.batch.v1.CronJobList": {
          "description": "CronJobList is a collection of cron jobs.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top