Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for loadOrScheduleRequestedTasks (0.29 sec)

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

                    addFinalization(rootBuildState, selector::postProcessExecutionPlan)
                }
            }
            val executionResult = workGraph.withNewWorkGraph { graph ->
                val result = cache.loadOrScheduleRequestedTasks(
                    graph = graph,
                    graphBuilder = scheduleTaskSelectorPostProcessing
                ) { workPreparer.scheduleRequestedTasks(graph, taskSelector) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

        /**
         * Loads the scheduled tasks from cache, if available, or else runs the given function to schedule the tasks and then
         * writes the result to the cache.
         */
        fun loadOrScheduleRequestedTasks(graph: BuildTreeWorkGraph, graphBuilder: BuildTreeWorkGraphBuilder?, scheduler: (BuildTreeWorkGraph) -> BuildTreeWorkGraph.FinalizedGraph): WorkGraphResult
    
        /**
         * Loads the scheduled tasks from cache.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            modelSideEffectExecutor.sideEffectStore = buildTreeModelSideEffects
        }
    
        override fun attachRootBuild(host: Host) {
            this.host = host
        }
    
        override fun loadOrScheduleRequestedTasks(
            graph: BuildTreeWorkGraph,
            graphBuilder: BuildTreeWorkGraphBuilder?,
            scheduler: (BuildTreeWorkGraph) -> BuildTreeWorkGraph.FinalizedGraph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top