Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for StringStream (0.19 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

          // happen if `offset` is not block-aligned, and the read returns the last
          // block in the file, which does not extend all the way out to `offset`.
          std::stringstream os;
          os << "EOF at offset " << offset << " in file " << filename
             << " at position " << pos << " with data size " << data.size();
          TF_SetStatus(status, TF_OUT_OF_RANGE, std::move(os).str().c_str());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 16 01:39:09 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // one element for each field.
      template <typename Tuple>
      static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
        TuplePrefixPrinter<N - 1>::TersePrintPrefixToStrings(t, strings);
        ::std::stringstream ss;
        UniversalTersePrint(::std::tr1::get<N - 1>(t), &ss);
        strings->push_back(ss.str());
      }
    };
    
    // Base cases.
    template <>
    struct TuplePrefixPrinter<0> {
      template <typename Tuple>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // one element for each field.
      template <typename Tuple>
      static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
        TuplePrefixPrinter<N - 1>::TersePrintPrefixToStrings(t, strings);
        ::std::stringstream ss;
        UniversalTersePrint(::std::tr1::get<N - 1>(t), &ss);
        strings->push_back(ss.str());
      }
    };
    
    // Base cases.
    template <>
    struct TuplePrefixPrinter<0> {
      template <typename Tuple>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      if (lhs.AlmostEquals(rhs)) {
        return AssertionSuccess();
      }
    
      ::std::stringstream expected_ss;
      expected_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
                  << expected;
    
      ::std::stringstream actual_ss;
      actual_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
                << actual;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      if (lhs.AlmostEquals(rhs)) {
        return AssertionSuccess();
      }
    
      ::std::stringstream expected_ss;
      expected_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
                  << expected;
    
      ::std::stringstream actual_ss;
      actual_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
                << actual;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_function_test.cc

        tensorflow::FunctionDef fdef;
        EXPECT_TRUE(GetFunctionDef(func_, &fdef));
        return fdef;
      }
    
      // logging utility
      template <class Container>
      string ToString(const Container& v) {
        std::stringstream ss;
        ss << "{";
        size_t i = 0;
        for (const auto& e : v) {
          if (i != 0) {
            ss << ", ";
          }
          ss << e.ToString();
          ++i;
        }
        ss << "}";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
Back to top