Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Cullop (0.38 sec)

  1. internal/s3select/sql/parser.go

    }
    
    // Grammar for Operand:
    //
    // operand → multOp ( ("-" | "+") multOp )*
    // multOpunary ( ("/" | "*" | "%") unary )*
    // unary   → "-" unary | primary
    // primary → Value | Variable | "(" expression ")"
    //
    
    // An Operand is a single term followed by an optional sequence of
    // terms separated by +/-
    type Operand struct {
    	Left  *MultOp     `parser:"@@"`
    	Right []*OpFactor `parser:"(@@)*"`
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 12.9K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/next_pluggable_device/tensor_pjrt_buffer_util_test.cc

      xla::Shape shape = xla::ShapeUtil::MakeShape(xla::S32, {1});
    
      auto buffer = c_api_client->pjrt_c_client()->client->BufferFromHostBuffer(
          data.data(), shape.element_type(), shape.dimensions(),
          /*byte_strides=*/std::nullopt,
          xla::PjRtClient::HostBufferSemantics::kImmutableOnlyDuringCall, nullptr,
          c_api_client->pjrt_c_client()->client->addressable_devices()[0]);
      CHECK_OK(buffer.status());
    
    C++
    - Registered: Tue Feb 27 12:39:08 GMT 2024
    - Last Modified: Mon Oct 30 19:20:20 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_lib.h

                        int expected_max_outputs,
                        CancellationManager& cancellation_manager,
                        std::optional<int64_t> step_id = std::nullopt) const;
    
      void StartExecute(TFE_Context* context,
                        const std::vector<std::vector<TFE_TensorHandle*>>& inputs,
                        const char* operation_name, const TFE_OpAttrs* attributes,
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 25 15:21:13 GMT 2023
    - 12.9K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/it/stopwords.txt

    dallo
    dai
    dagli
    dall
    dagl
    dalla
    dalle
    di
    del
    dello
    dei
    degli
    dell
    degl
    della
    delle
    in
    nel
    nello
    nei
    negli
    nell
    negl
    nella
    nelle
    su
    sul
    sullo
    sui
    sugli
    sull
    sugl
    sulla
    sulle
    per
    tra
    contro
    io
    tu
    lui
    lei
    noi
    voi
    loro
    mio
    mia
    miei
    mie
    tuo
    tua
    tuoi
    tue
    suo
    sua
    suoi
    sue
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  5. internal/s3select/sql/aggregation.go

    	if err != nil {
    		return err
    	}
    	for _, rt := range e.Right {
    		err = rt.Right.aggregateRow(r, tableAlias)
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    func (e *MultOp) aggregateRow(r Record, tableAlias string) error {
    	err := e.Left.aggregateRow(r, tableAlias)
    	if err != nil {
    		return err
    	}
    	for _, rt := range e.Right {
    		err = rt.Right.aggregateRow(r, tableAlias)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 7.9K bytes
    - Viewed (0)
  6. internal/s3select/sql/evaluate.go

    		if rerr != nil {
    			return nil, rerr
    		}
    		err := lval.arithOp(op, rval)
    		if err != nil {
    			return nil, err
    		}
    	}
    	return lval, nil
    }
    
    func (e *MultOp) evalNode(r Record, tableAlias string) (*Value, error) {
    	lval, lerr := e.Left.evalNode(r, tableAlias)
    	if lerr != nil || len(e.Right) == 0 {
    		return lval, lerr
    	}
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 12K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device.cc

                parallel_device.CopyToParallelDevice(
                    context, absl::get<TFE_TensorHandle*>(input), status));
            if (TF_GetCode(status) != TF_OK) return absl::nullopt;
            parallel_inputs.push_back(parallel_tensor.get());
            implicitly_broadcast_tensors.emplace_back(std::move(parallel_tensor));
          } else {
            TF_SetStatus(
                status, TF_INVALID_ARGUMENT,
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 29 22:05:31 GMT 2023
    - 18.3K bytes
    - Viewed (0)
  8. internal/s3select/sql/analysis.go

    	return
    }
    
    func (e *Operand) analyze(s *Select) (result qProp) {
    	result.combine(e.Left.analyze(s))
    	for _, r := range e.Right {
    		result.combine(r.Right.analyze(s))
    	}
    	return
    }
    
    func (e *MultOp) analyze(s *Select) (result qProp) {
    	result.combine(e.Left.analyze(s))
    	for _, r := range e.Right {
    		result.combine(r.Right.analyze(s))
    	}
    	return
    }
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 8.5K bytes
    - Viewed (0)
  9. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

                        const TFE_OpAttrs* attributes, int expected_max_outputs,
                        CancellationManager& cancellation_manager,
                        absl::optional<int64_t> step_id = absl::nullopt);
      // Block until the previous `StartExecute` operation has executed. Forwards
      // the status from `TFE_Execute` and returns outputs if the status is OK.
      std::vector<TensorHandlePtr> Join(TF_Status* status);
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Feb 09 07:47:20 GMT 2024
    - 25.4K bytes
    - Viewed (1)
  10. tensorflow/c/c_api_experimental_test.cc

          std::vector<int64_t>&& dims) const {
        return absl::make_optional(dims);
      }
    
      absl::optional<std::vector<int64_t>> unknown_shape() const {
        return absl::nullopt;
      }
    
      static constexpr int64_t kUnknownDim =
          shape_inference::InferenceContext::kUnknownDim;
      TF_Status* status_;
      TFE_ContextOptions* tfe_context_options_;
      TFE_Context* tfe_context_;
    };
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 17 22:27:52 GMT 2023
    - 13.1K bytes
    - Viewed (1)
Back to top