Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for interrupted (0.49 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        }
    
        private
        fun safely(block: () -> Unit) =
            try {
                synchronized(this, block)
            } catch (ex: InterruptedException) {
                Thread.currentThread().interrupt()
            }
    
        private
        val doCapture: Boolean
            get() = isCapturing != null && isCapturing!!.get()
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    **_Note: Dynamic Groovy interception uses the same mechanism but replacements are a bit more complicated due to the dynamic nature of Groovy. 
    And due to that build logic is also intercepted when code is run and not just on the bytecode level._**
    
    Next sections will explain more in detail how we can define interceptors and how the code is then replaced.
    
    
    ### Gradle Distribution Build Time
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top