Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 311 for arity (0.05 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

    public abstract class KaFunctionalType : KaNonErrorClassType(), KaContextReceiversOwner {
        public abstract val isSuspend: Boolean
        public abstract val isReflectType: Boolean
        public abstract val arity: Int
        public abstract val hasContextReceivers: Boolean
        public abstract val receiverType: KaType?
        public abstract val hasReceiver: Boolean
        public abstract val parameterTypes: List<KaType>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // and at most $maxtuple arguments in Combine. Please contact
    // ******@****.*** if you need more.
    // Please note that the number of arguments to Combine is limited
    // by the maximum arity of the implementation of tr1::tuple which is
    // currently set at $maxtuple.
    
    #ifndef GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_
    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_PARAM_UTIL_GENERATED_H_
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    // and the values v1, v2, ..., must support the << operator for
    // streaming to std::ostream.
    //
    // We also define the EXPECT_* variations.
    //
    // For now we only support predicates whose arity is at most 5.
    // Please email ******@****.*** if you need
    // support for higher arities.
    
    // GTEST_ASSERT_ is the basic statement to which all of the assertions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest_pred_impl.h

    // and the values v1, v2, ..., must support the << operator for
    // streaming to std::ostream.
    //
    // We also define the EXPECT_* variations.
    //
    // For now we only support predicates whose arity is at most 5.
    // Please email ******@****.*** if you need
    // support for higher arities.
    
    // GTEST_ASSERT_ is the basic statement to which all of the assertions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/decl.go

    				var init syntax.Expr
    				if i < len(values) {
    					init = values[i]
    				}
    
    				check.constDecl(obj, last.Type, init, inherited)
    			}
    
    			// Constants must always have init values.
    			check.arity(s.Pos(), s.NameList, values, true, inherited)
    
    			// process function literals in init expressions before scope changes
    			check.processDelayed(top)
    
    			// spec: "The scope of a constant or variable identifier declared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_validate_inputs.mlir

        // expected-error @+1 {{'tf.Identity' op TF2XLA TPU bridge input check: invalid no. of tuple shardings 2 for arity = 1}}
        %0, %c = tf_executor.island wraps "tf.Identity"(%arg0) {_tpu_replicate = "cluster", _XlaSharding = "\08\02\2a\08\08\01\1a\01\01\22\01\00\2a\08\08\01\1a\01\01\22\01\01"} : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. internal/s3select/unused-errors.go

    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseCastArity(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseCastArity",
    		message:    "The SQL expression CAST has incorrect arity.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseEmptySelect(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseEmptySelect",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseCastArity: {
    		Code:           "ParseCastArity",
    		Description:    "The SQL expression CAST has incorrect arity.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrParseInvalidTypeParam: {
    		Code:           "ParseInvalidTypeParam",
    		Description:    "The SQL expression contains an invalid parameter value.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

                loc,
                rewriter.create<arith::AddIOp>(
                    loc, input_size,
                    rewriter.create<arith::SubIOp>(loc, stride_value, one)),
                stride_value);
            // std::max(int64{0}, (output_size - 1) * stride +
            //     effective_filter_size - input_size);
            Value padding_needed = rewriter.create<arith::SubIOp>(
                loc,
                rewriter.create<arith::AddIOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    }
    
    //===----------------------------------------------------------------------===//
    // EinsumOp
    //===----------------------------------------------------------------------===//
    
    // Verifies that,
    // * Arity of the op is at most two.
    //
    // TODO(hinsu): Verify einsum equation attribute.
    LogicalResult EinsumOp::verify() {
      EinsumOp op = *this;
      if (op.getN() > 2) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top