Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for scheduleWork (0.14 sec)

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

            val state = build.state
            if (state.isProjectsCreated) {
                writeBoolean(true)
                val scheduledWork = build.scheduledWork
                withDebugFrame({ "Gradle" }) {
                    writeGradleState(gradle)
                    val projects = collectProjects(state.projects, scheduledWork.scheduledNodes, gradle.serviceOf())
                    writeProjects(gradle, projects)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/VintageGradleBuild.kt

    import org.gradle.api.internal.GradleInternal
    import org.gradle.execution.plan.ScheduledWork
    import org.gradle.internal.build.BuildState
    
    
    interface VintageGradleBuild {
        val isRootBuild: Boolean
        val state: BuildState
        val gradle: GradleInternal
        val hasScheduledWork: Boolean
        val scheduledWork: ScheduledWork
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 983 bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

    import org.gradle.execution.plan.OrdinalGroupFactory
    import org.gradle.execution.plan.ScheduledWork
    import org.gradle.execution.plan.TaskNode
    
    
    class WorkNodeCodec(
        private val owner: GradleInternal,
        private val internalTypesCodec: Codec<Any?>,
        private val ordinalGroups: OrdinalGroupFactory
    ) {
    
        suspend fun WriteContext.writeWork(work: ScheduledWork) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            override val hasScheduledWork: Boolean
                get() = gradle.taskGraph.size() > 0
    
            override val scheduledWork: ScheduledWork
                get() {
                    lateinit var work: ScheduledWork
                    gradle.taskGraph.visitScheduledNodes { nodes, entryNodes -> work = ScheduledWork(nodes, entryNodes) }
                    return work
                }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.execution.plan.ScheduledWork
    import org.gradle.normalization.internal.InputNormalizationHandlerInternal
    import org.gradle.util.Path
    import java.io.File
    
    
    /**
     * State cached for a project.
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top