Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,549 for operator_ (0.38 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

         * Kotlin currently can't disambiguate between invoke operators with more specific receivers in a type hierarchy.
         *
         * See https://youtrack.jetbrains.com/issue/KT-15711
         */
        private
        fun polymorphicDomainObjectContainer() =
            delegate as? PolymorphicDomainObjectContainer<T>
                ?: throw IllegalArgumentException("Container '$delegate' is not polymorphic.")
    }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, "`\r`", 0, 0},
    
    	// operators
    	{_Operator, "!", Not, 0},
    	{_Operator, "~", Tilde, 0},
    
    	{_Operator, "||", OrOr, precOrOr},
    
    	{_Operator, "&&", AndAnd, precAndAnd},
    
    	{_Operator, "==", Eql, precCmp},
    	{_Operator, "!=", Neq, precCmp},
    	{_Operator, "<", Lss, precCmp},
    	{_Operator, "<=", Leq, precCmp},
    	{_Operator, ">", Gtr, precCmp},
    	{_Operator, ">=", Geq, precCmp},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  3. tensorflow/c/kernels/histogram_summary_op.cc

    #include "tensorflow/core/platform/tstring.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace {
    
    // Operators used to create a std::unique_ptr for TF_Tensor and TF_Status.
    struct TFTensorDeleter {
      void operator()(TF_Tensor* tf_tensor) const { TF_DeleteTensor(tf_tensor); }
    };
    
    struct TFStatusDeleter {
      void operator()(TF_Status* tf_status) const { TF_DeleteStatus(tf_status); }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

      tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
    
    ]]
    
      tuple& operator=(const tuple& t) { return CopyFrom(t); }
    
      template <GTEST_$(k)_TYPENAMES_(U)>
      tuple& operator=(const GTEST_$(k)_TUPLE_(U)& t) {
        return CopyFrom(t);
      }
    
    $if k == 2 [[
      template <typename U0, typename U1>
      tuple& operator=(const ::std::pair<U0, U1>& p) {
        f0_ = p.first;
        f1_ = p.second;
        return *this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/cmp/cmp.go

    // ordered values.
    package cmp
    
    // Ordered is a constraint that permits any ordered type: any type
    // that supports the operators < <= >= >.
    // If future releases of Go add new ordered types,
    // this constraint will be modified to include them.
    //
    // Note that floating-point types may contain NaN ("not-a-number") values.
    // An operator such as == or < will always report false when
    // comparing a NaN value with any other value, NaN or not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_generated.h

      operators.reserve(o.operators.size());
      for (const auto &operators_ : o.operators) { operators.emplace_back((operators_) ? new tflite::OperatorT(*operators_) : nullptr); }
    }
    
    inline SubGraphT &SubGraphT::operator=(SubGraphT o) FLATBUFFERS_NOEXCEPT {
      std::swap(tensors, o.tensors);
      std::swap(inputs, o.inputs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

      tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
    
    ]]
    
      tuple& operator=(const tuple& t) { return CopyFrom(t); }
    
      template <GTEST_$(k)_TYPENAMES_(U)>
      tuple& operator=(const GTEST_$(k)_TUPLE_(U)& t) {
        return CopyFrom(t);
      }
    
    $if k == 2 [[
      template <typename U0, typename U1>
      tuple& operator=(const ::std::pair<U0, U1>& p) {
        f0_ = p.first;
        f1_ = p.second;
        return *this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. samples/security/spire/spire-quickstart.yaml

                                a set of values. Valid operators are In, NotIn, Exists
                                and DoesNotExist.
                              type: string
                            values:
                              description: values is an array of string values. If the
                                operator is In or NotIn, the values array must be non-empty.
                                If the operator is Exists or DoesNotExist, the values
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  9. src/html/template/js_test.go

    		{jsCtxRegexp, "+"},
    		{jsCtxRegexp, "-"},
    		// An incr/decr op precedes a div operator.
    		// This is not airtight. In (g = ++/h/i) a regexp follows a
    		// pre-increment operator, but in practice devs do not try to
    		// increment or decrement regular expressions.
    		// (g++/h/i) where ++ is a postfix operator on g is much more
    		// common.
    		{jsCtxDivOp, "--"},
    		{jsCtxDivOp, "++"},
    		{jsCtxDivOp, "x--"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Build call once operator.
      BufferOffset<tflite::Operator> BuildCallOnceOperator(
          mlir::TFL::CallOnceOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
      BufferOffset<tflite::Operator> BuildNumericVerifyOperator(
          mlir::TFL::NumericVerifyOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
      BufferOffset<tflite::Operator> BuildCustomOperator(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top