Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 453 for typeName (0.21 sec)

  1. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.h

    // type from the `element_type`.
    Type CloneTypeWithNewElementType(Type old_type, Type element_type);
    
    // Creates an array with integer/float type.
    template <typename T,
              typename = std::enable_if_t<
                  (std::is_integral_v<T> || std::is_same_v<T, float>), void>>
    Value CreateConstValue(OpBuilder& builder, const Location loc,
                           const SmallVector<int64_t>& shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. test/fixedbugs/bug023.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type Type interface {
    	TypeName() string;
    }
    
    type TInt struct {
    }
    
    // TInt
    func (i *TInt) TypeName() string {
    	return "int";
    }
    
    
    func main() {
    	var t Type;
    	t = nil;
    	_ = t;
    }
    
    /*
    bug023.go:20: fatal error: naddr: const <Type>I{<TypeName>110(<_t117>{},<_o119>{},{});}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 453 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    $if k == 2 [[
      template <typename U0, typename U1>
      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>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h.pump

    // AssertyTypeEq<T1, T2>::type is defined iff T1 and T2 are the same
    // type.  This can be used as a compile-time assertion to ensure that
    // two types are equal.
    
    template <typename T1, typename T2>
    struct AssertTypeEq;
    
    template <typename T>
    struct AssertTypeEq<T, T> {
      typedef bool type;
    };
    
    // A unique type used as the default value for the arguments of class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_executable_persistor.h

              : "");
    }
    
    template <typename ExecutableType, typename ClientType>
    std::string DeviceExecutablePersistor<ExecutableType, ClientType>::GetFilePath(
        const XlaSerializedCacheKey& key) const {
      const std::string file_name =
          absl::StrCat(XlaSerializedCacheKeyToString(key), ".pb");
      return io::JoinPath(persistent_cache_directory_, file_name);
    }
    
    template <typename ExecutableType, typename ClientType>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/IncrementalFilerTest.groovy

            }
        }
    
        TypeElement type(String typeName) {
            Stub(TypeElement) {
                getEnclosingElement() >> null
                getQualifiedName() >> Stub(Name) {
                    toString() >> typeName
                }
            }
        }
    
        ExecutableElement methodInside(String typeName) {
            Stub(ExecutableElement) {
                getEnclosingElement() >> type(typeName)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

                                              const char* file, int line);
    
    template <typename> class ParamGeneratorInterface;
    template <typename> class ParamGenerator;
    
    // Interface for iterating over elements provided by an implementation
    // of ParamGeneratorInterface<T>.
    template <typename T>
    class ParamIteratorInterface {
     public:
      virtual ~ParamIteratorInterface() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    $if k == 2 [[
      template <typename U0, typename U1>
      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>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      bool operator!=(T* p) const { return value_ != p; }
      template <typename U>
      bool operator==(linked_ptr<U> const& ptr) const {
        return value_ == ptr.get();
      }
      template <typename U>
      bool operator!=(linked_ptr<U> const& ptr) const {
        return value_ != ptr.get();
      }
    
     private:
      template <typename U>
      friend class linked_ptr;
    
      T* value_;
      linked_ptr_internal link_;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/TypeMirrorToType.java

            StringBuilder typeName = new StringBuilder("L");
            typeNesting.forEach(element -> {
                if (element instanceof PackageElement) {
                    typeName.append(((PackageElement) element).getQualifiedName().toString().replace(".", "/")).append("/");
                } else {
                    typeName.append(element.getSimpleName().toString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top