Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testcase (0.14 sec)

  1. tensorflow/c/c_api_test.cc

      string api_def_overwrites = R"(op: <
      graph_op_name: "TestCApi"
      summary: "New summary"
    >
    )";
      status = TF_NewStatus();
      TF_ApiDefMapPut(api_def_map, api_def_overwrites.c_str(),
                      api_def_overwrites.size(), status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteStatus(status);
    
      string op_name = "TestCApi";
      status = TF_NewStatus();
      auto* api_def_buf =
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      status = file->Tell(&position);
      EXPECT_EQ(status.code(), Code::OK);
      EXPECT_EQ(position, test_data.size());
    }
    
    TEST_P(ModularFileSystemTest, TestClose) {
      const std::string filename = GetURIForPath("a_file");
      std::unique_ptr<WritableFile> file;
      Status status = env_->NewWritableFile(filename, &file);
      if (!status.ok())
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
Back to top