Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for build_lang (0.25 sec)

  1. scripts/docs.py

        new_index_path.write_text(new_index_content, encoding="utf-8")
        typer.secho(f"Successfully initialized: {new_path}", color=typer.colors.GREEN)
        update_languages()
    
    
    @app.command()
    def build_lang(
        lang: str = typer.Argument(
            ..., callback=lang_callback, autocompletion=complete_existing_lang
        ),
    ) -> None:
        """
        Build the docs for a language.
        """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:26:14 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. tools/docker-builder/types.go

    	v = append(v, p.Targets...)
    	return v
    }
    
    type BuildPlan struct {
    	Images []ImagePlan `json:"images"`
    }
    
    func (p BuildPlan) Targets() []string {
    	tgts := sets.New("init") // All targets depend on init
    	for _, img := range p.Images {
    		tgts.InsertAll(img.Targets...)
    	}
    	return sets.SortedList(tgts)
    }
    
    func (p BuildPlan) Find(n string) *ImagePlan {
    	for _, i := range p.Images {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/TransformerContextBuilder.java

         * @return the mutable transformerContext
         */
        TransformerContext initialize(ModelBuildingRequest request, ModelProblemCollector problems);
    
        /**
         * The immutable transformerContext, can be used after the buildplan is finished.
         *
         * @return the immutable transformerContext
         */
        TransformerContext build();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformerContextBuilder.java

         */
        ModelTransformerContext initialize(ModelBuilderRequest request, ModelProblemCollector problems);
    
        /**
         * The immutable transformerContext, can be used after the buildplan is finished.
         *
         * @return the immutable transformerContext
         */
        ModelTransformerContext build();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. tools/docker-builder/main.go

    	defer span.End()
    	by, err := os.ReadFile(filepath.Join(testenv.IstioSrc, "tools", "docker.yaml"))
    	if err != nil {
    		return a, err
    	}
    	a.Plan = map[string]BuildPlan{}
    	for _, arch := range a.Architectures {
    		plan := BuildPlan{}
    
    		// We allow variables in the plan
    		input := os.Expand(string(by), func(s string) string {
    			data := archToEnvMap(arch)
    			data["SIDECAR"] = "envoy"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. build/lib/release.sh

              --build-arg SETCAP_IMAGE="${KUBE_BUILD_SETCAP_IMAGE}" \
              --build-arg BINARY="${binary_name}" \
              "${docker_build_path}" >"${build_log}" 2>&1; then
                cat "${build_log}"
                exit 1
            fi
            rm "${build_log}"
    
            # If we are building an official/alpha/beta release we want to keep
            # docker images and tag them appropriately.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. ci/official/utilities/extract_resultstore_links.py

                      'These can be then printed out, and/or output into a '
                      'JUnit-based XML file inside a specified directory.')
    
      parser.add_argument('build_log',
                          help='Path to a build log.')
      parser.add_argument('--xml-out-path',
                          required=False,
                          help='Path to which to output '
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java

    import org.apache.maven.model.building.DefaultTransformerContext.GAKey;
    import org.apache.maven.model.building.DefaultTransformerContext.Holder;
    
    /**
     * Builds up the transformer context.
     * After the buildplan is ready, the build()-method returns the immutable context useful during distribution.
     * This is an inner class, as it must be able to call readRawModel()
     *
     * @since 4.0.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

    import org.apache.maven.internal.impl.model.DefaultModelTransformerContext.GAKey;
    import org.apache.maven.internal.impl.model.DefaultModelTransformerContext.Holder;
    
    /**
     * Builds up the transformer context.
     * After the buildplan is ready, the build()-method returns the immutable context useful during distribution.
     * This is an inner class, as it must be able to call readRawModel()
     *
     * @since 4.0.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

                plan.determineExecutionPlan()
                finalizedPlan = plan.finalizePlan()
            }
    
            @Override
            ExecutionResult<Void> executeTasks(BuildWorkPlan buildPlan) {
                return services.planExecutor.process(finalizedPlan.asWorkSource()) { node ->
                    if (node instanceof SelfExecutingNode) {
                        node.execute(null)
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top