Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for setJobname (0.22 sec)

  1. tensorflow/c/eager/c_api_unified_experimental.cc

            s, tensorflow::errors::InvalidArgument(
                   "TF_AbstractOpSetOpName must be called on a TracingOperation."));
        return;
      }
      tsl::Set_TF_Status_from_Status(s, tracing_op->SetOpName(op_name));
    }
    
    void TF_AbstractOpSetAttrType(TF_AbstractOp* op, const char* const attr_name,
                                  TF_DataType value, TF_Status* s) {
      Status status =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 10:15:17 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/gradients.cc

      TF_RETURN_IF_ERROR(op->Reset("ZerosLike", /*raw_device_name=*/nullptr));
      if (isa<tracing::TracingOperation>(op.get())) {
        TF_RETURN_IF_ERROR(dyn_cast<tracing::TracingOperation>(op.get())->SetOpName(
            absl::StrCat("ZerosLike", ToId(t)).c_str()));
      }
      TF_RETURN_IF_ERROR(op->AddInput(t));
      int num_outputs = 1;
      std::vector<AbstractTensorHandle*> outputs(num_outputs);
      TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. pkg/controller/cronjob/utils.go

    	annotations := copyAnnotations(&cj.Spec.JobTemplate)
    	// We want job names for a given nominal start time to have a deterministic name to avoid the same job being created twice
    	name := getJobName(cj, scheduledTime)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.CronJobsScheduledAnnotation) {
    
    		timeZoneLocation, err := time.LoadLocation(ptr.Deref(cj.Spec.TimeZone, ""))
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/cronjob_controllerv2.go

    		t := nextScheduleTimeDuration(cronJob, now, sched)
    		return t, updateStatus, nil
    	}
    	if inActiveListByName(cronJob, &batchv1.Job{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      getJobName(cronJob, *scheduledTime),
    			Namespace: cronJob.Namespace,
    		}}) || cronJob.Status.LastScheduleTime.Equal(&metav1.Time{Time: *scheduledTime}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top