Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for has_job (0.19 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

        if (node->type_string() == nodeType) {
          auto device_name = node->assigned_device_name();
          DeviceNameUtils::ParsedName device;
          if (DeviceNameUtils::ParseFullName(device_name, &device) &&
              device.has_job && device.job == jobType) {
            for (const auto& attr : node->attrs()) {
              auto attr_key = attr.first;
              auto attr_value = attr.second;
              if (attr_key == attrKey &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"lastSuccessfulTime": "Information when was the last time the job successfully completed.",
    }
    
    func (CronJobStatus) SwaggerDoc() map[string]string {
    	return map_CronJobStatus
    }
    
    var map_Job = map[string]string{
    	"":         "Job represents the configuration of a single job.",
    	"metadata": "Standard object's 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 May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    			job: func() batch.Job {
    				job := baseJob.DeepCopy()
    				job.Spec.ManagedBy = ptr.To("custom-managed-by")
    				return *job
    			}(),
    			wantStatus: baseJob.Status,
    		},
    		"job with well known value of the managedBy; feature enabled; the status is updated": {
    			enableJobManagedBy: true,
    			job: func() batch.Job {
    				job := baseJob.DeepCopy()
    				job.Spec.ManagedBy = ptr.To(batch.JobControllerName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top