Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parameter_name (0.04 sec)

  1. okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt

            .newBuilder()
            .query(null)
            .apply {
              for (i in 0 until url.querySize) {
                val parameterName = url.queryParameterName(i)
                val newValue = if (parameterName in queryParamsNameToRedact) "██" else url.queryParameterValue(i)
    
                addEncodedQueryParameter(parameterName, newValue)
              }
            }.toString()
        }
    
        private fun logHeader(
          headers: Headers,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

        val loggingFileSystem: FileSystem =
          object : ForwardingFileSystem(fileSystem) {
            override fun onPathParameter(
              path: Path,
              functionName: String,
              parameterName: String,
            ): Path {
              events.add("$functionName:$path")
              return path
            }
    
            override fun onPathResult(
              path: Path,
              functionName: String,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
Back to top