Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hasScheduledWork (0.23 sec)

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

    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)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            override val isRootBuild: Boolean
                get() = state is RootBuildState
    
            override val gradle: GradleInternal
                get() = state.mutableModel
    
            override val hasScheduledWork: Boolean
                get() = gradle.taskGraph.size() > 0
    
            override val scheduledWork: ScheduledWork
                get() {
                    lateinit var work: ScheduledWork
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            val builds = mutableMapOf<BuildState, BuildToStore>()
            host.visitBuilds { build ->
                val state = build.state
                builds[state] = BuildToStore(build, build.hasScheduledWork, build.isRootBuild)
                if (build.hasScheduledWork && state is StandAloneNestedBuild) {
                    // Also require the owner of a buildSrc build
                    builds[state.owner] = builds.getValue(state.owner).hasChildren()
                }
    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