- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for build_lang (0.09 seconds)
-
scripts/docs.py
new_llm_prompt_path.write_text("", encoding="utf-8") print(f"Successfully initialized: {new_path}") 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. """
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlan.java
public class BuildPlan { private final Map<MavenProject, Map<String, BuildStep>> plan = new LinkedHashMap<>(); private final Map<MavenProject, List<MavenProject>> projects; private final Map<String, String> aliases = new HashMap<>(); private volatile Set<String> duplicateIds; private volatile List<BuildStep> sortedNodes; BuildPlan() { this.projects = null; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 28 12:11:25 GMT 2025 - 6.1K bytes - Click Count (0) -
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();
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanLogger.java
*/ @Named public class BuildPlanLogger { private final Logger logger = LoggerFactory.getLogger(getClass()); public void writePlan(BuildPlan plan) { if (logger.isDebugEnabled()) { writePlan(logger::debug, plan); } } public void writePlan(BuildPlan plan, MavenProject project) { if (logger.isDebugEnabled()) { writePlan(logger::debug, plan, project); } }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 7.1K bytes - Click Count (0) -
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 'Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Nov 08 17:50:27 GMT 2023 - 10.9K bytes - Click Count (0)