MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / GetChildren

Method GetChildren

tensorflow/core/platform/file_system_test.cc:276–281  ·  view source on GitHub ↗

Simulating a FS with a root dir and a single file underneath it.

Source from the content-addressed store, hash-verified

274
275 // Simulating a FS with a root dir and a single file underneath it.
276 Status GetChildren(const string& dir, std::vector<string>* result) override {
277 if (dir == "." || dir.empty()) {
278 result->push_back("test");
279 }
280 return Status::OK();
281 }
282};
283
284// Making sure that ./<pattern> and <pattern> have the same result.

Callers

nothing calls this directly

Calls 2

emptyMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected