Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for discardListener (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/InstrumentedExecutionAccessListenerRegistry.kt

    ) : Stoppable {
    
        init {
            InstrumentedExecutionAccess.setListener(instrumentedExecutionAccessListener)
        }
    
        override fun stop() {
            InstrumentedExecutionAccess.discardListener()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            startCollectingCacheFingerprint()
            InstrumentedInputs.setListener(instrumentedInputAccessListener)
        }
    
        private
        fun doneWithWork() {
            InstrumentedInputs.discardListener()
            cacheFingerprintController.stopCollectingFingerprint()
        }
    
        private
        fun saveModel(model: Any) {
            saveToCache(
                stateType = StateType.Model
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            cl.readProperty()
    
            then:
            1 * listener.systemPropertyQueried("prop", null, SystemPropertyAccessingThing.name)
            0 * listener._
    
            cleanup:
            InstrumentedInputs.discardListener()
        }
    
        def "transforms Java lambda Action implementations so they can be serialized"() {
            given:
            def cl = transformAndLoad(ClassWithActionLambda)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top