Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 453 for typeName (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_traits.h

    // format), as and example all element wise operations are layout agnostic.
    template <typename ConcreteType>
    class LayoutAgnostic : public TraitBase<ConcreteType, LayoutAgnostic> {};
    
    // Trait to indicate operations that cannot be duplicated as they might carry
    // certain state around within their implementations.
    template <typename ConcreteType>
    class CannotDuplicate : public TraitBase<ConcreteType, CannotDuplicate> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MethodDescription.java

        }
    
        private String typeName(Type type) {
            if (type == null) {
                return null;
            }
            return type instanceof Class ? Cast.cast(Class.class, type).getName() : type.toString();
        }
    
        public MethodDescription returns(Type returnType) {
            this.returnType = typeName(returnType);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/object.h

    // instead.
    template <typename TF, typename TReturn, typename... TFuncArgs>
    class CallableWrapper;
    
    // Template extracts arguments from a lambda function. This base
    // class definition inherits from a another specialization in order. We use
    // this top level template to extract the function pointer associated with
    // the created lambda functor class.
    template <typename TLambda>
    class CallableWrapperUnpackArgs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/gradient_checker.h

    /// <X_T, Y_T, JAC_T> should be <complex64, float, float>
    ///
    /// if y = Complex(x, x) where x is DT_FLOAT (so y is DT_COMPLEX64)
    /// <X_T, Y_T, JAC_T> should be <float, complex64, float>
    template <typename X_T, typename Y_T, typename JAC_T>
    Status ComputeGradientError(const Scope& scope, const OutputList& xs,
                                const std::vector<TensorShape>& x_shapes,
                                const OutputList& ys,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:35:17 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/cc/ops/const_op.h

    NodeBuilder::NodeOut AsNodeOut(const Scope& scope, const Input& inp);
    
    template <typename T>
    Output Const(const Scope& scope, const Input::Initializer& val) {
      auto orig_const_output = Const(scope, val);
      if (!scope.ok()) return Output();
    
      typedef typename Input::Initializer::RealType<T>::type DstT;
    
      if (val.tensor.dtype() == DataTypeToEnum<DstT>::v()) {
        return orig_const_output;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 17 09:17:01 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    template <typename T, typename U>
    bool ArrayEq(const T* lhs, size_t size, const U* rhs);
    
    // This generic version is used when k is 0.
    template <typename T, typename U>
    inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; }
    
    // This overload is used when k >= 1.
    template <typename T, typename U, size_t N>
    inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    }
    var comparableTypes = []namedCELType{
    	{typeName: "int", celType: cel.IntType},
    	{typeName: "uint", celType: cel.UintType},
    	{typeName: "double", celType: cel.DoubleType},
    	{typeName: "bool", celType: cel.BoolType},
    	{typeName: "duration", celType: cel.DurationType},
    	{typeName: "timestamp", celType: cel.TimestampType},
    	{typeName: "string", celType: cel.StringType},
    	{typeName: "bytes", celType: cel.BytesType},
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/CodeGeneratingSignatureTreeVisitor.java

            TypeName implementationOwner = TypeUtils.typeName(request.getImplementationInfo().getOwner());
            String implementationName = request.getImplementationInfo().getName();
            if (request.getInterceptedCallable().getKind() == CallableKindInfo.AFTER_CONSTRUCTOR) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                    'Add an input or output annotation',
                    'Mark it as @Internal',
                ]
                additionalData.asMap == [
                    'parentPropertyName' : 'tree',
                    'typeName' : 'MyTask',
                    'propertyName' : 'nonAnnotated',
                ]
            }
    
        }
    
        def "task cannot have property with annotation @#ann.simpleName"() {
            javaTaskSource << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. maven-di/src/main/java/org/apache/maven/di/impl/Utils.java

                return "@" + ReflectionUtils.getDisplayName(annotationType);
            }
            String typeName = annotationType.getName();
            String str = annotation.toString();
            return str.startsWith("@" + typeName)
                    ? "@" + ReflectionUtils.getDisplayName(annotationType) + str.substring(typeName.length() + 1)
                    : str;
        }
    
        public static String getDisplayString(Object object) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top