Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetChildren (0.15 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

        if (!status.ok()) GTEST_SKIP() << "CreateDir() not supported: " << status;
      }
    
      std::vector<std::string> children;
      status = env_->GetChildren(dirpath, &children);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
      if (!status.ok()) GTEST_SKIP() << "GetChildren() not supported: " << status;
    
      // All entries must show up in the vector.
      // Must contain only the last name in filenames and dirnames.
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 20:25:58 GMT 2022
    - 71K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                if (resolutionResult.getDependencyGraph() != null) {
                    RepositoryUtils.toArtifacts(
                            artifacts,
                            resolutionResult.getDependencyGraph().getChildren(),
                            Collections.singletonList(project.getArtifact().getId()),
                            null);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
Back to top