Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for build_lang (0.05 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: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Dec 21 17:40:17 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                    buildContext.getReactorBuildStatus().halt();
                }
            }
    
            public BuildPlan calculateMojoExecutions(Map<MavenProject, List<MavenProject>> projects, List<Task> tasks) {
                BuildPlan buildPlan = new BuildPlan(projects);
    
                for (Task task : tasks) {
                    BuildPlan step;
    
                    if (task instanceof GoalTask) {
                        String pluginGoal = task.getValue();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
Back to top