Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for onPathParameter (0.09 seconds)

  1. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt

          override val badValue: Cache =
            Cache(
              object : ForwardingFileSystem(FakeFileSystem()) {
                override fun onPathParameter(
                  path: Path,
                  functionName: String,
                  parameterName: String,
                ): Path = TODO()
              },
              "/cash".toPath(),
              1,
            )
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 11 02:37:00 GMT 2026
    - 28.8K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

        fileSystem.createDirectories(cache.directoryPath)
        val loggingFileSystem: FileSystem =
          object : ForwardingFileSystem(fileSystem) {
            override fun onPathParameter(
              path: Path,
              functionName: String,
              parameterName: String,
            ): Path {
              events.add("$functionName:$path")
              return path
            }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Mar 20 09:13:37 GMT 2026
    - 121K bytes
    - Click Count (0)
Back to Top