Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for setFaultyRename (0.06 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/io/FaultyFileSystem.kt

        }
      }
    
      fun setFaultyDelete(
        file: Path,
        faulty: Boolean,
      ) {
        if (faulty) {
          deleteFaults.add(file)
        } else {
          deleteFaults.remove(file)
        }
      }
    
      fun setFaultyRename(
        file: Path,
        faulty: Boolean,
      ) {
        if (faulty) {
          renameFaults.add(file)
        } else {
          renameFaults.remove(file)
        }
      }
    
      @Throws(IOException::class)
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 2.8K bytes
    - Click Count (0)
Back to Top