Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for create_tempdir (0.16 sec)

  1. guava/src/com/google/common/io/TempFileCreator.java

      /**
       * @throws IllegalStateException if the directory could not be created (to implement the contract
       *     of {@link Files#createTempDir()}, such as if the system does not support creating temporary
       *     directories securely
       */
      abstract File createTempDir();
    
      abstract File createTempFile(String prefix) throws IOException;
    
      private static TempFileCreator pickSecureCreator() {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization_test.cc

    #include "tsl/platform/status_matchers.h"
    
    namespace tensorflow {
    namespace {
    
    using ::stablehlo::quantization::QuantizationConfig;
    using ::stablehlo::quantization::io::CreateTmpDir;
    using ::testing::HasSubstr;
    using ::tsl::testing::IsOk;
    using ::tsl::testing::StatusIs;
    
    // Test cases for `RunQuantization` mainly tests for error cases because testing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

      absl::StatusOr<std::string> tmp_dir = CreateTmpDir();
    
      ASSERT_THAT(tmp_dir, IsOk());
    
      auto* const env = tsl::Env::Default();
      EXPECT_THAT(env->FileExists(*tmp_dir), IsOk());
    }
    
    TEST(IoTest, CreateTmpDirWhenInvalidPathReturnsInternalError) {
      TestEnvBrokenFileSystem test_env{};
      absl::StatusOr<std::string> tmp_dir = CreateTmpDir(&test_env);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.cc

    }
    
    absl::StatusOr<std::string> CreateTmpDir(tsl::Env* const env) {
      TF_ASSIGN_OR_RETURN(std::string tmp_dir, GetLocalTmpFileName(env));
    
      if (!env->RecursivelyCreateDir(tmp_dir).ok()) {
        return absl::InternalError(
            absl::StrFormat("Failed to create tmp dir: '%s'", tmp_dir));
      }
    
      return tmp_dir;
    }
    
    absl::StatusOr<std::string> CreateTmpDir() {
      // The overloaded function uses the default env.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/IoTestCase.java

          }
        }
    
        if (testDir == null) {
          // testdata resources aren't file:// urls, so create a directory to store them in and then
          // copy the resources to the filesystem as needed
          testDir = createTempDir();
        }
    
        return testDir;
      }
    
      /** Returns the file with the given name under the testdata directory. */
      protected final @Nullable File getTestFile(String name) throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

                .because(RATIONALE);
    
        @ArchTest
        public static final ArchRule forbid_calls_to_guava_Files_createTempDir =
            classes()
                .should(not(callMethod(com.google.common.io.Files.class, "createTempDir")))
                .because(RATIONALE);
    
        @ArchTest
        public static final ArchRule forbid_illegal_calls_to_File_createTempFile_overload =
            classes()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

            }
        }
    
        public void markForDeletion(File toDelete) {
            filesToDelete.add(toDelete);
            warnAboutCleanup = true;
        }
    
        public synchronized File createTempDir() {
            try {
                Thread.sleep(20);
            } catch (InterruptedException e) {
                // ignore
            }
    
            File dir = new File(TEMP_DIR_PATH, baseFilename + System.currentTimeMillis());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h

    // failed.
    absl::StatusOr<std::string> CreateTmpDir(tsl::Env* env);
    
    // Creates a temporary directory and returns its path. Returns an InternalError
    // status if failed. The file system used will be the default environment
    // returned by `tsl::Env::Default`.
    absl::StatusOr<std::string> CreateTmpDir();
    
    // Convenience function for writing string `data` to file without the need to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

      TF_ASSIGN_OR_RETURN(const std::string calibration_saved_model_dir,
                          CreateTmpDir());
    
      std::string calibration_data_dir =
          config.calibration_options().calibration_data_dir();
      if (calibration_data_dir.empty()) {
        TF_ASSIGN_OR_RETURN(calibration_data_dir, CreateTmpDir());
      }
    
      TF_RETURN_IF_ERROR(ExportToSavedModel(
          module_op, calibration_data_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/FilesFileTraverserTest.java

     *
     * @author Jens Nyman
     */
    
    public class FilesFileTraverserTest extends IoTestCase {
    
      private File rootDir;
    
      @Override
      public void setUp() throws IOException {
        rootDir = createTempDir();
      }
    
      public void testFileTraverser_emptyDirectory() throws Exception {
        assertThat(Files.fileTraverser().breadthFirst(rootDir)).containsExactly(rootDir);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 20:17:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top