Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for deleteMin (0.21 sec)

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

      EXPECT_EQ(env_->CreateDir(target_path).code(), Code::OK);
    
      status = env_->DeleteDir(target_path);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
    }
    
    TEST_P(ModularFileSystemTest, TestDeleteDirectoryDoesNotExist) {
      const std::string dirpath = GetURIForPath("a_dir");
      Status status = env_->DeleteDir(dirpath);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::NOT_FOUND);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  2. .teamcity/.mvn/wrapper/maven-wrapper.jar

    Installer(Downloader, PathAssembler); public java.io.File createDist(WrapperConfiguration) throws Exception; private java.util.List listDirs(java.io.File); private void setExecutablePermiss(java.io.File); private boolean isWindows(); private boolean deleteDir(java.io.File); public void unzip(java.io.File, java.io.File) throws java.io.IOException; public void copyInputStream(java.io.InputStream, java.io.OutputStream) throws java.io.IOException; } org/apache/maven/wrapper/Logger.class package org.apache.maven.wrapper;...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  3. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    ava.io.File, String); private void verifyDownloadChecks(String, java.io.File, String) throws Exception; private java.util.List listDirs(java.io.File); private void setExecutablePermiss(java.io.File); private boolean isWindows(); private boolean deleteDir(java.io.File); private void unzip(java.io.File, java.io.File) throws java.io.IOException; private void copyInputStream(java.io.InputStream, java.io.OutputStream) throws java.io.IOException; } org/gradle/wrapper/Logger.class package org.gradle.wrapper;...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            // bust the artifact cache because we don't want to fall into the smart behavior
            // of reusing metadata from cache for a different repository
            getUserHomeCacheDir().file(CacheLayout.MODULES.getKey()).deleteDir()
            resetExpectations()
            // Changing the host makes Gradle consider that the 2 repositories are distinct
            buildFile.text = buildFile.text.replaceAll("(?m)http://localhost", "http://127.0.0.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    ${mutation}
                    from "src.txt"
                    into "destination"
                }
            """
    
            withBuildCache().run "copy"
            file("destination").deleteDir()
    
            when:
            withBuildCache().run "copy"
    
            then:
            noneSkipped()
    
            where:
            description                 | mutation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
Back to top