Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for func_call (0.18 sec)

  1. internal/s3select/sql/analysis.go

    		}
    		result = qProp{isRowFunc: true}
    
    	case e.ListExpr != nil:
    		result = e.ListExpr.analyze(s)
    
    	case e.SubExpression != nil:
    		result = e.SubExpression.analyze(s)
    
    	case e.FuncCall != nil:
    		result = e.FuncCall.analyze(s)
    
    	default:
    		result = qProp{err: errUnexpectedInvalidNode}
    	}
    	return
    }
    
    func (e *FuncExpr) analyze(s *Select) (result qProp) {
    	funcName := e.getFunctionName()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. internal/s3select/sql/evaluate.go

    		return e.JPathExpr.evalNode(r, tableAlias)
    	case e.ListExpr != nil:
    		return e.ListExpr.evalNode(r, tableAlias)
    	case e.SubExpression != nil:
    		return e.SubExpression.evalNode(r, tableAlias)
    	case e.FuncCall != nil:
    		return e.FuncCall.evalNode(r, tableAlias)
    	}
    	return nil, errInvalidASTNode
    }
    
    func (e *FuncExpr) evalNode(r Record, tableAlias string) (res *Value, err error) {
    	switch e.getFunctionName() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. internal/s3select/sql/parser.go

    	JPathExpr     *JSONPath   `parser:"| @@"`
    	ListExpr      *ListExpr   `parser:"| @@"`
    	SubExpression *Expression `parser:"| \"(\" @@ \")\""`
    	// Include function expressions here.
    	FuncCall *FuncExpr `parser:"| @@"`
    }
    
    // FuncExpr represents a function call
    type FuncExpr struct {
    	SFunc     *SimpleArgFunc `parser:"  @@"`
    	Count     *CountFunc     `parser:"| @@"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      func.mutable_signature()->set_is_stateful(true);
      *flib_def.add_function() = std::move(func);
      TF_ASSERT_OK(root.graph()->AddFunctionLibrary(flib_def));
      NodeDef call_node;
      call_node.set_name("fn_call");
      call_node.set_op("Stateful_func");
      Status status;
      Node* call = root.graph()->AddNode(call_node, &status);
      TF_ASSERT_OK(status);
    
      Output shape = Output(call, 0);
      Output reshape_input =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      return host_compute_node;
    }
    
    // Resets "_device_ordinal" attr to placeholder value for related nodes
    // (XlaRecvAtHost nodes; XlaSendFromHost nodes; If/While/FuncCall nodes
    // containing XlaRecvAtHost/XlaSendFromHost).
    Status ResetDeviceOrdinalToPlaceholderValue(Graph* g) {
      AttrValue device_ordinal_value;
      device_ordinal_value.set_placeholder("_device_ordinal");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top