- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for abbl (0.09 sec)
-
src/bytes/bytes_test.go
in, arg, out string } var trimTests = []TrimTest{ {"Trim", "abba", "a", "bb"}, {"Trim", "abba", "ab", ""}, {"TrimLeft", "abba", "ab", ""}, {"TrimRight", "abba", "ab", ""}, {"TrimLeft", "abba", "a", "bba"}, {"TrimLeft", "abba", "b", "abba"}, {"TrimRight", "abba", "a", "abb"}, {"TrimRight", "abba", "b", "abba"}, {"Trim", "<tag>", "<>", "tag"}, {"Trim", "* listitem", " *", "listitem"},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 19 19:09:04 UTC 2024 - 61.2K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
EXPECT_EQ(absl::string_view(test_string), absl::string_view(TF_TString_GetDataPointer(t_out_tstr), TF_TString_GetSize(t_out_tstr))); EXPECT_EQ(absl::string_view(TF_TString_GetDataPointer(t_in_tstr), TF_TString_GetSize(t_in_tstr)), absl::string_view(TF_TString_GetDataPointer(t_out_tstr),
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 97K bytes - Viewed (0) -
tensorflow/c/eager/c_api_test.cc
ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get()); ASSERT_TRUE(absl::StrContains(device_name, "CPU:0")) << device_name; const char* backing_device_name = TFE_TensorHandleBackingDeviceName(hcpu, status.get()); ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get()); ASSERT_TRUE(absl::StrContains(backing_device_name, "CPU:0")) << backing_device_name;
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Aug 03 20:50:20 UTC 2023 - 94.6K bytes - Viewed (0) -
tensorflow/c/c_api_function_test.cc
const std::unordered_set<string>& nodes) { ASSERT_EQ(nodes.size(), fdef.node_def_size()) << "Got unexpected number of nodes. Expected: [" << absl::StrJoin(nodes, ", ") << "] Actual nodes in fdef: " << fdef.DebugString(); for (const NodeDef& node_def : fdef.node_def()) { ASSERT_TRUE(nodes.find(node_def.name()) != nodes.end())
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Jul 20 22:08:54 UTC 2023 - 63.6K bytes - Viewed (0)