Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for func_call (0.11 sec)

  1. tensorflow/compiler/jit/compilability_check_util_test.cc

      FunctionDef call_identity = FunctionDefHelper::Create(
          "CallIdentity",
          /*in_def=*/{"x:float"},
          /*out_def=*/{"z:float"}, /*attr_def=*/{},
          /*node_def=*/
          {{{"func_call"},
            "PartitionedCall",
            {"x"},
            {{"Tin", DataTypeSlice({DT_FLOAT})},
             {"Tout", DataTypeSlice({DT_FLOAT})},
             {"f",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K 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)
Back to top