Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 453 for typeName (0.22 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

    // include/gtest/gtest-param-test.h.
    template <typename ForwardIterator>
    internal::ParamGenerator<
      typename ::testing::internal::IteratorTraits<ForwardIterator>::value_type>
    ValuesIn(ForwardIterator begin, ForwardIterator end);
    
    template <typename T, size_t N>
    internal::ParamGenerator<T> ValuesIn(const T (&array)[N]);
    
    template <class Container>
    internal::ParamGenerator<typename Container::value_type> ValuesIn(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_compiler.h

      // shared_ptrs (an invasive change) would make the model easier to reason
      // about?
    }
    
    template <typename ExecutableType, typename ClientType>
    string DeviceCompiler<ExecutableType, ClientType>::DebugString() const {
      return "DeviceCompiler";
    }
    
    template <typename ExecutableType, typename ClientType>
    Status DeviceCompiler<ExecutableType, ClientType>::CompileIfNeeded(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

              typename T6, typename T7, typename T8>
    void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8>& t,
                 ::std::ostream* os) {
      PrintTupleTo(t, os);
    }
    
    template <typename T1, typename T2, typename T3, typename T4, typename T5,
              typename T6, typename T7, typename T8, typename T9>
    void PrintTo(const ::std::tr1::tuple<T1, T2, T3, T4, T5, T6, T7, T8, T9>& t,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      Renderer &CodeLines(const string &text);
      template <typename... Args>
      Renderer CodeLines(absl::string_view text, const Args &...args) {
        return CodeLines(absl::Substitute(text, args...));
      }
    
      // Indent and append a C++ statement.
      // Note: do *not* include a trailing semicolon in the statement text.
      Renderer &Statement(const string &text);
      template <typename... Args>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/MetaDataParseException.java

        }
    
        public MetaDataParseException(String typeName, ExternalResource resource, Throwable cause) {
            super(String.format("Could not parse %s %s", typeName, resource.getDisplayName()), cause);
        }
    
        public MetaDataParseException(String typeName, ExternalResource resource, String details, Throwable cause) {
            super(String.format("Could not parse %s %s: %s", typeName, resource.getDisplayName(), details), cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. test/fixedbugs/issue55889.go

    package p
    
    import _ "unsafe"
    
    //go:linkname nonexistent nonexistent
    
    //go:linkname constant constant
    const constant = 42
    
    //go:linkname typename typename
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 20:35:31 UTC 2022
    - 562 bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/TypeUtils.java

            return PRIMITIVE_TYPES_DEFAULT_VALUES_AS_STRING.getOrDefault(type, "null");
        }
    
        /**
         * Converts an ASM {@link Type} to a JavaPoet {@link TypeName}.
         */
        public static TypeName typeName(Type type) {
            if (type.equals(Type.VOID_TYPE)) {
                return ClassName.VOID;
            }
            if (type.equals(Type.BOOLEAN_TYPE)) {
                return ClassName.BOOLEAN;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 15:45:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskDetails.java

        static TaskDetails of(Path path, String typeName, @Nullable String description) {
            return new DefaultTaskDetails(path, typeName, description);
        }
    
        final class DefaultTaskDetails implements TaskDetails {
            private final Path path;
            private final String typeName;
            @Nullable private final String description;
    
            private DefaultTaskDetails(Path path, String typeName, @Nullable String description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:47:48 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/base/tests/tensor_test.cc

      EXPECT_EQ(tensor.dims(), 0);
      EXPECT_EQ(tensor.dtype(), dtype);
      EXPECT_EQ(*reinterpret_cast<typename TypeParam::type*>(tensor.data()), 42);
      EXPECT_EQ(tensor.num_bytes(), sizeof(typename TypeParam::type));
      EXPECT_EQ(tensor.num_elements(), 1);
    }
    
    template <typename T>
    class Construct1DTensorTest : public ::testing::Test {};
    TYPED_TEST_SUITE(Construct1DTensorTest, SimpleTypes);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:56:08 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/gcs/cleanup.h

     private:
      static_assert(!std::is_reference<F>::value, "F must not be a reference");
    
      bool released_ = false;
      F f_;
    };
    
    template <int&... ExplicitParameterBarrier, typename F,
              typename DecayF = typename std::decay<F>::type>
    Cleanup<DecayF> MakeCleanup(F&& f) {
      return Cleanup<DecayF>(std::forward<F>(f));
    }
    
    }  // namespace tf_gcs_filesystem
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 11:16:00 UTC 2020
    - 3.4K bytes
    - Viewed (0)
Back to top