Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for JobList (0.25 sec)

  1. pkg/api/testing/defaulting_test.go

    		{Group: "batch", Version: "v1", Kind: "Job"}:                                                               {},
    		{Group: "batch", Version: "v1", Kind: "JobList"}:                                                           {},
    		{Group: "batch", Version: "v1beta1", Kind: "CronJob"}:                                                      {},
    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. pkg/controller/cronjob/cronjob_controllerv2.go

    	// but that still have a ControllerRef to the given cronjob
    	jobList, err := jm.jobLister.Jobs(cronJob.Namespace).List(labels.Everything())
    	if err != nil {
    		return nil, err
    	}
    
    	jobsToBeReconciled := []*batchv1.Job{}
    
    	for _, job := range jobList {
    		// If it has a ControllerRef, that's all that matters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/generated.proto

      // +optional
      optional string reason = 5;
    
      // Human readable message indicating details about last transition.
      // +optional
      optional string message = 6;
    }
    
    // JobList is a collection of jobs.
    message JobList {
      // 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_JobCondition
    }
    
    var map_JobList = map[string]string{
    	"":         "JobList is a collection of 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 Jobs.",
    }
    
    func (JobList) SwaggerDoc() map[string]string {
    	return map_JobList
    }
    
    var map_JobSpec = map[string]string{
    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.2
    
    // JobList is a collection of jobs.
    type JobList struct {
    	metav1.TypeMeta `json:",inline"`
    	// 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 Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. pkg/apis/batch/types.go

    	// +optional
    	Status JobStatus
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // JobList is a collection of jobs.
    type JobList 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

              }
            },
            "required": [
              "type",
              "status"
            ],
            "type": "object"
          },
          "io.k8s.api.batch.v1.JobList": {
            "description": "JobList is a collection of 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

    		if !reflect.DeepEqual(test.expected, rows) {
    			t.Errorf("%d mismatch: %s", i, cmp.Diff(test.expected, rows))
    		}
    	}
    }
    
    func TestPrintJobList(t *testing.T) {
    	completions := int32(2)
    	jobList := batch.JobList{
    		Items: []batch.Job{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "job1",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    				},
    				Spec: batch.JobSpec{
    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.Selector))
    	}
    	return []metav1.TableRow{row}, nil
    }
    
    func printJobList(list *batch.JobList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(list.Items))
    	for i := range list.Items {
    		r, err := printJob(&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. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            }
          },
          "required": [
            "type",
            "status"
          ],
          "type": "object"
        },
        "io.k8s.api.batch.v1.JobList": {
          "description": "JobList is a collection of jobs.",
          "properties": {
            "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top