Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 132 for Debug (0.19 sec)

  1. docs/contribute/debug_logging.md

    Debug Logging
    =============
    
    OkHttp has internal APIs to enable debug logging. It uses the `java.util.logging` API which can be
    tricky to configure. As a shortcut, you can paste [OkHttpDebugLogging.kt]. Then enable debug logging
    for whichever features you need:
    
    ```
    OkHttpDebugLogging.enableHttp2()
    OkHttpDebugLogging.enableTaskRunner()
    ```
    
    ### Activating on Android
    
    ```
    $ adb shell setprop log.tag.okhttp.Http2 DEBUG
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 16:35:36 GMT 2022
    - 2.7K bytes
    - Viewed (0)
  2. api/go1.11.txt

    pkg debug/elf, const EM_68HC08 = 71
    pkg debug/elf, const EM_68HC08 Machine
    pkg debug/elf, const EM_68HC11 = 70
    pkg debug/elf, const EM_68HC11 Machine
    pkg debug/elf, const EM_68HC16 = 69
    pkg debug/elf, const EM_68HC16 Machine
    pkg debug/elf, const EM_78KOR = 199
    pkg debug/elf, const EM_78KOR Machine
    pkg debug/elf, const EM_8051 = 165
    pkg debug/elf, const EM_8051 Machine
    pkg debug/elf, const EM_ALTERA_NIOS2 = 113
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  3. api/go1.7.txt

    pkg debug/elf, const R_390_64 = 22
    pkg debug/elf, const R_390_64 R_390
    pkg debug/elf, const R_390_8 = 1
    pkg debug/elf, const R_390_8 R_390
    pkg debug/elf, const R_390_COPY = 9
    pkg debug/elf, const R_390_COPY R_390
    pkg debug/elf, const R_390_GLOB_DAT = 10
    pkg debug/elf, const R_390_GLOB_DAT R_390
    pkg debug/elf, const R_390_GOT12 = 6
    pkg debug/elf, const R_390_GOT12 R_390
    pkg debug/elf, const R_390_GOT16 = 15
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Jun 28 15:08:11 GMT 2016
    - 13.6K bytes
    - Viewed (0)
  4. api/go1.19.txt

    pkg debug/elf, const R_LARCH_SOP_SR R_LARCH #46229
    pkg debug/elf, const R_LARCH_SOP_SUB = 32 #46229
    pkg debug/elf, const R_LARCH_SOP_SUB R_LARCH #46229
    pkg debug/elf, const R_LARCH_SUB16 = 53 #46229
    pkg debug/elf, const R_LARCH_SUB16 R_LARCH #46229
    pkg debug/elf, const R_LARCH_SUB24 = 54 #46229
    pkg debug/elf, const R_LARCH_SUB24 R_LARCH #46229
    pkg debug/elf, const R_LARCH_SUB32 = 55 #46229
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  5. api/go1.21.txt

    pkg debug/elf, const DF_1_NODIRECT = 131072 #56887
    pkg debug/elf, const DF_1_NODIRECT DynFlag1 #56887
    pkg debug/elf, const DF_1_NODUMP = 4096 #56887
    pkg debug/elf, const DF_1_NODUMP DynFlag1 #56887
    pkg debug/elf, const DF_1_NOHDR = 1048576 #56887
    pkg debug/elf, const DF_1_NOHDR DynFlag1 #56887
    pkg debug/elf, const DF_1_NOKSYMS = 524288 #56887
    pkg debug/elf, const DF_1_NOKSYMS DynFlag1 #56887
    pkg debug/elf, const DF_1_NOOPEN = 64 #56887
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  6. api/go1.12.txt

    pkg reflect, type MapIter struct
    pkg runtime/debug, func ReadBuildInfo() (*BuildInfo, bool)
    pkg runtime/debug, type BuildInfo struct
    pkg runtime/debug, type BuildInfo struct, Deps []*Module
    pkg runtime/debug, type BuildInfo struct, Main Module
    pkg runtime/debug, type BuildInfo struct, Path string
    pkg runtime/debug, type Module struct
    pkg runtime/debug, type Module struct, Path string
    pkg runtime/debug, type Module struct, Replace *Module
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 02 21:21:53 GMT 2019
    - 13.5K bytes
    - Viewed (0)
  7. okcurl/src/main/kotlin/okhttp3/curl/logging/LoggingUtil.kt

      companion object {
        private val activeLoggers = mutableListOf<Logger>()
    
        fun configureLogging(
          debug: Boolean,
          showHttp2Frames: Boolean,
          sslDebug: Boolean,
        ) {
          if (debug || showHttp2Frames || sslDebug) {
            if (sslDebug) {
              System.setProperty("javax.net.debug", "")
            }
            LogManager.getLogManager().reset()
            val handler =
              object : ConsoleHandler() {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Fri Apr 05 03:30:42 GMT 2024
    - 2.7K bytes
    - Viewed (1)
  8. api/next/66054.txt

    pkg debug/elf, const PT_OPENBSD_NOBTCFI = 1705237480 #66054
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 10 04:13:26 GMT 2024
    - 116 bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        }
    }
    
    
    private
    fun IntegrationTest.addDebugProperties() {
        // TODO Move magic property out
        if (project.hasProperty("org.gradle.integtest.debug")) {
            systemProperties["org.gradle.integtest.debug"] = "true"
            testLogging.showStandardStreams = true
        }
        // TODO Move magic property out
        if (project.hasProperty("org.gradle.integtest.verbose")) {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt

          init {
            val platformSystemProperty = getPlatformSystemProperty()
    
            if (platformSystemProperty == JDK9_PROPERTY) {
              if (System.getProperty("javax.net.debug") == null) {
                System.setProperty("javax.net.debug", "")
              }
            } else if (platformSystemProperty == CONSCRYPT_PROPERTY) {
              if (Security.getProviders()[0].name != "Conscrypt") {
                if (!Conscrypt.isAvailable()) {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 15.3K bytes
    - Viewed (0)
Back to top