- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 91 for Aliases (0.04 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java
new TreeMap<>(new PhaseComparator(lifecycle.getPhases())); Map<String, String> aliases = lifecycle.getDelegate().aliases().stream() .collect(Collectors.toMap(a -> a.v3Phase(), a -> a.v4Phase())); if (aliases.containsKey(lifecyclePhase)) { lifecyclePhase = PhaseId.of(aliases.get(lifecyclePhase)).phase(); } boolean passed = false;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Dec 13 23:04:37 GMT 2024 - 8.5K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Lifecycle.java
return phases().stream().flatMap(Phase::allPhases); } /** * Collection of aliases for this lifecycle. * Aliases map Maven 3 phase names to their Maven 4 equivalents. * * @return the collection of phase aliases */ Collection<Alias> aliases(); /** * A phase in the lifecycle. *
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 7.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlan.java
this.projects = projects; } public Map<MavenProject, List<MavenProject>> getAllProjects() { return projects; } public Map<String, String> aliases() { return aliases; } public Stream<MavenProject> projects() { return plan.keySet().stream(); } public void addProject(MavenProject project, Map<String, BuildStep> steps) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Mar 28 12:11:25 GMT 2025 - 6.1K bytes - Click Count (0) -
fastapi/param_functions.py
allowed by the alias or set of aliases defined. """ ), ] = None, serialization_alias: Annotated[ Union[str, None], Doc( """ 'Blacklist' validation step. The vanilla parameter field will be the single one of the alias' or set of aliases' fields and all the other fields will be ignored at serialization time.Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 12:54:56 GMT 2025 - 63K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java
} }); } return phases; } @Override public Collection<Alias> aliases() { return Collections.emptyList(); } }; } } static class WrappedLifecycle extends org.apache.maven.lifecycle.Lifecycle {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 20.1K bytes - Click Count (0) -
tests/test_repeated_parameter_alias.py
}, "description": "Validation Error", }, }, "summary": "Get Parameters With Repeated Aliases", } } },Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Jun 30 18:25:16 GMT 2023 - 3.7K bytes - Click Count (0) -
src/cmd/asm/internal/arch/arch.go
for i, s := range obj.Anames { instructions[s] = obj.As(i) } for i, s := range x86.Anames { if obj.As(i) >= obj.A_ARCHSPECIFIC { instructions[s] = obj.As(i) + obj.ABaseAMD64 } } // Annoying aliases. instructions["JA"] = x86.AJHI /* alternate */ instructions["JAE"] = x86.AJCC /* alternate */ instructions["JB"] = x86.AJCS /* alternate */ instructions["JBE"] = x86.AJLS /* alternate */Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Nov 13 12:17:37 GMT 2025 - 21.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java
Map<String, String> phaseUpgrades = new HashMap<>(); // Clean lifecycle aliases phaseUpgrades.put("pre-clean", Lifecycle.BEFORE + Lifecycle.Phase.CLEAN); phaseUpgrades.put("post-clean", Lifecycle.AFTER + Lifecycle.Phase.CLEAN); // Default lifecycle aliases phaseUpgrades.put("pre-integration-test", Lifecycle.BEFORE + Lifecycle.Phase.INTEGRATION_TEST);
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 16.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
Created: Sun Dec 28 03:35:09 GMT 2025 - 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/PluginLifecycle.java
} }) .collect(Collectors.toList()); } @Override public Collection<Alias> aliases() { return Collections.emptyList(); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.6K bytes - Click Count (0)