Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for copyTile (0.19 sec)

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

        GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    
      const std::string new_filepath = GetURIForPath("a_new_file");
      status = env_->CopyFile(filepath, new_filepath);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
      if (!status.ok()) GTEST_SKIP() << "CopyFile() not supported: " << status;
    
      status = env_->FileExists(filepath);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
    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. src/main/java/jcifs/smb/SmbFile.java

            if ( isDirectory() ) {
                SmbCopyUtil.copyDir(this, dest, b, bsize, w, sh, dh);
            }
            else {
                SmbCopyUtil.copyFile(this, dest, b, bsize, w, sh, dh);
            }
    
            dest.clearAttributeCache();
        }
    
    
        /**
         * 
         */
        void clearAttributeCache () {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top