Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ModelSideEffects (0.16 sec)

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

                write(encoder, value)
            }
            val reader = ValueStore.Reader { decoder ->
                read(decoder)
            }
            store.createValueStore(StateType.ModelSideEffects, writer, reader)
        }
    
        fun collectSideEffects(): List<BlockAddress> = entries.toList()
    
        fun write(sideEffect: BuildTreeModelSideEffect) {
            val blockAddress = valuesStore.write(sideEffect)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

        /**
         * Contains the state for the entire build.
         */
        Work(true),
    
        /**
         * Contains the side effects observed during the creation of the [Model].
         */
        ModelSideEffects(true),
    
        /**
         * Contains the model objects sent back to the IDE in response to a TAPI request.
         */
        Model(true),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top