Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isFunction (0.04 sec)

  1. internal/s3select/sql/parser.go

    //                     | ValueExpression
    // ValueExpression     → Operand
    //
    // Operand grammar follows below
    
    // Expression represents a logical disjunction of clauses
    type Expression struct {
    	And []*AndCondition `parser:"@@ ( \"OR\" @@ )*"`
    }
    
    // ListExpr represents a literal list with elements as expressions.
    type ListExpr struct {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.cc

                                  unsigned char* is_list, TF_Status* status) {
      TF_AttrType ret = TF_ATTR_INT;
      const tensorflow::AttrTypeMap* attr_types_;
      bool is_function;
      status->status = tensorflow::AttrTypeMapForOp(
          tensorflow::unwrap(op)->Name().c_str(), &attr_types_, &is_function);
      if (!status->status.ok()) {
        return ret;
      }
      status->status =
          tensorflow::AttrTypeByName(*attr_types_, attr_name, &ret, is_list);
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top