Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 517 for plan (0.04 sec)

  1. tools/docker-builder/crane.go

    				plan := a.PlanFor(arch).Find(args.Name)
    				if plan == nil {
    					continue
    				}
    				// Plan is a list of real file paths, but we don't have a strong mapping from "docker context source"
    				// to "real path on disk". We do have a weak mapping though, by reproducing docker-copy.sh
    				for dest, src := range args.Files {
    					translated, err := translate(plan.Dependencies(), src)
    					if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. src/debug/plan9obj/file.go

    }
    
    // Data reads and returns the contents of the Plan 9 a.out section.
    func (s *Section) Data() ([]byte, error) {
    	return saferio.ReadDataAt(s.sr, uint64(s.Size), 0)
    }
    
    // Open returns a new ReadSeeker reading the Plan 9 a.out section.
    func (s *Section) Open() io.ReadSeeker { return io.NewSectionReader(s.sr, 0, 1<<63-1) }
    
    // A Symbol represents an entry in a Plan 9 a.out symbol table section.
    type Sym struct {
    	Value uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. pkg/test/framework/config.go

    func (c *configFactory) New() config.Plan {
    	return &configPlan{
    		configFactory: c,
    		yamlText:      make(map[string][]string),
    	}
    }
    
    func (c *configFactory) YAML(ns string, yamlText ...string) config.Plan {
    	return c.New().YAML(ns, yamlText...)
    }
    
    func (c *configFactory) Eval(ns string, args any, yamlTemplates ...string) config.Plan {
    	return c.New().Eval(ns, args, yamlTemplates...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/taskgraph/TaskExecutionGraphInternal.java

     * limitations under the License.
     */
    package org.gradle.execution.taskgraph;
    
    import org.gradle.api.Task;
    import org.gradle.api.execution.TaskExecutionGraph;
    import org.gradle.execution.plan.FinalizedExecutionPlan;
    import org.gradle.execution.plan.Node;
    import org.gradle.internal.build.ExecutionResult;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Set;
    import java.util.function.BiConsumer;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/build/BuildOperationFiringBuildWorkPreparerTest.groovy

    import org.gradle.api.internal.project.taskfactory.TestTaskIdentities
    import org.gradle.execution.plan.ExecutionPlan
    import org.gradle.execution.plan.LocalTaskNode
    import org.gradle.execution.plan.QueryableExecutionPlan
    import org.gradle.execution.plan.ToPlannedNodeConverterRegistry
    import org.gradle.execution.plan.ToPlannedTaskConverter
    import org.gradle.internal.operations.TestBuildOperationRunner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/connection/ForceConnectRoutePlanner.kt

     */
    class ForceConnectRoutePlanner(private val delegate: RealRoutePlanner) : RoutePlanner by delegate {
      override fun plan(): RoutePlanner.Plan = delegate.planConnect() // not delegate.plan()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 20:39:41 UTC 2024
    - 932 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

         */
        void prepareToScheduleTasks();
    
        /**
         * Creates a new work plan for this build. This method can be called multiple times to create multiple plans.
         */
        BuildWorkPlan newWorkGraph();
    
        /**
         * Populates the given work plan with tasks and work from this build.
         */
        void populateWorkGraph(BuildWorkPlan plan, Consumer<? super WorkGraphBuilder> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/DefaultTaskExecutionPreparer.java

        }
    
        @Override
        public void scheduleRequestedTasks(GradleInternal gradle, @Nullable EntryTaskSelector selector, ExecutionPlan plan) {
            gradle.getOwner().getProjects().withMutableStateOfAllProjects(() -> {
                buildTaskScheduler.scheduleRequestedTasks(gradle, selector, plan);
    
                if (buildModelParameters.isConfigureOnDemand() && gradle.isRootBuild()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GenerationPlan.java

        }
    
        /**
         * Is the grammar file modeled by this plan out of considered out of date?
         *
         * @return True if the grammar generation is out of date (needs regen); false otherwise.
         */
        public boolean isOutOfDate() {
            return outOfDate;
        }
    
        /**
         * Marks the plan as out of date.
         */
        void markOutOfDate() {
            this.outOfDate = true;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareBuildModelController.kt

                delegate.prepareToScheduleTasks()
            } // Else, already done
        }
    
        override fun scheduleRequestedTasks(selector: EntryTaskSelector?, plan: ExecutionPlan) {
            if (!maybeLoadFromCache()) {
                delegate.scheduleRequestedTasks(selector, plan)
            } // Else, already scheduled
        }
    
        private
        fun maybeLoadFromCache(): Boolean {
            return configurationCache.isLoaded
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top