Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCondition (0.12 sec)

  1. pkg/controller/job/job_controller_test.go

    				t.Error("Missing .status.startTime")
    			}
    			// validate conditions
    			if !getCondition(actual, tc.expectedCondition, v1.ConditionTrue, tc.expectedConditionReason) {
    				t.Errorf("Expected fail condition.  Got %#v", actual.Status.Conditions)
    			}
    		})
    	}
    }
    
    func getCondition(job *batch.Job, condition batch.JobConditionType, status v1.ConditionStatus, reason string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      LogicalResult matchAndRewrite(AssertOp op,
                                    PatternRewriter& rewriter) const override {
        ElementsAttr cst;
        if (matchPattern(op.getCondition(), m_Constant(&cst))) {
          if (cst.getValues<bool>()[0]) {
            rewriter.eraseOp(op);
            return success();
          }
        }
        return failure();
      }
    };
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        if (else_tensor.getRank() > 0)
          data_first_dim = else_tensor.getShape().front();
      } else {
        // Neither has a rank.
        return success();
      }
    
      auto cond_tensor = op.getCondition().getType().dyn_cast<RankedTensorType>();
      if (!cond_tensor) return success();
      auto cond_rank = cond_tensor.getRank();
      // Check (2a) and (2b).
      if (cond_rank == 0 || cond_rank == data_rank) return success();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top