Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for childAt (0.17 sec)

  1. tensorflow/c/c_api.cc

        mutex_lock graph_lock(g->mu);
    
        const int first_new_node_id = g->graph.num_node_ids();
    
        string prefix_cmp;
        const char* child_scope_name;
        if (prefix == nullptr) {
          child_scope_name = "gradients";
        } else {
          prefix_cmp = string(prefix) + "/";
          // The operation should fail if the provided name prefix has already been
          // used in this graph
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

                                                          "a_dir", "another_dir"};
      EXPECT_EQ(children.size(), filenames.size() + dirnames.size());
      for (const auto& child : expected_children)
        EXPECT_NE(std::find(children.begin(), children.end(), child),
                  children.end());
    }
    
    TEST_P(ModularFileSystemTest, TestGetChildrenEmpty) {
      const std::string dirpath = GetURIForPath("dir");
    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