Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for has_job (0.26 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)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/decode.go

    func handle_ImmediateShiftedRegister(x uint32, max uint8, is_w, has_ror bool) Arg {
    	var rsa RegExtshiftAmount
    	if is_w {
    		rsa.reg = W0 + Reg((x>>16)&(1<<5-1))
    	} else {
    		rsa.reg = X0 + Reg((x>>16)&(1<<5-1))
    	}
    	switch (x >> 22) & 0x3 {
    	case 0:
    		rsa.extShift = lsl
    	case 1:
    		rsa.extShift = lsr
    	case 2:
    		rsa.extShift = asr
    	case 3:
    		if has_ror {
    			rsa.extShift = ror
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 76.9K bytes
    - Viewed (0)
Back to top