- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 1,036 for pluginId (1.54 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/CommonsCliUpgradeOptions.java
printStream.accept(" --plugins Upgrade plugins known to fail with Maven 4"); printStream.accept( " -a, --all Apply all upgrades (equivalent to --model-version 4.1.0 --infer --model --plugins)"); printStream.accept(""); printStream.accept("Default behavior: --model --plugins --infer are applied if no other options are specified");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:48:39 UTC 2025 - 7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.11.md
* kube-apiserver: the `Priority` admission plugin is now enabled by default when using `--enable-admission-plugins`. If using `--admission-control` to fully specify the set of admission plugins, the `Priority` admission plugin should be added if using the `PodPriority` feature, which is enabled by default in 1.11. ([#65739](https://github.com/kubernetes/kubernetes/pull/65739), [@lig...
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 328.4K bytes - Viewed (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts
import org.gradle.buildinit.plugins.internal.modifiers.Language import org.gradle.buildinit.plugins.internal.modifiers.Language.CPP import org.gradle.buildinit.plugins.internal.modifiers.Language.GROOVY import org.gradle.buildinit.plugins.internal.modifiers.Language.JAVA import org.gradle.buildinit.plugins.internal.modifiers.Language.KOTLIN import org.gradle.buildinit.plugins.internal.modifiers.Language.SCALA
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Jun 24 13:46:12 UTC 2025 - 3.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.7.md
* Added support to a hierarchy of kubectl plugins (a tree of plugins as children of other plugins). ([#45981](https://github.com/kubernetes/kubernetes/pull/45981), [@fabianofranz](https://github.com/fabianofranz)) * Added exported env vars to kubectl plugins so that plugin developers have access to global flags, namespace, the plugin descriptor and the full path to the caller binary.Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 308.7K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.29.md
- Fixed a regression since 1.24 in the scheduling framework when overriding MultiPoint plugins (e.g. default plugins).
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Wed Mar 12 00:36:01 UTC 2025 - 429.6K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.30.md
- Scheduler skips NodeAffinity Score plugin when NodeAffinity Score plugin has nothing to do with a Pod.
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Wed Jun 18 18:59:10 UTC 2025 - 398.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginLoaderException.java
super(message, cause); pluginKey = plugin.getKey(); } public PluginLoaderException(Plugin plugin, String message, InvalidVersionSpecificationException cause) { super(message, cause); pluginKey = plugin.getKey(); } public PluginLoaderException(Plugin plugin, String message, InvalidPluginException cause) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/TestUtils.java
} /** * Creates upgrade options with only the --plugins option set. * * @param plugins the --plugins option value * @return configured upgrade options */ public static UpgradeOptions createOptionsWithPlugins(boolean plugins) { return createOptions(null, null, null, plugins, null); } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 8.9K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectSorterTest.java
} private Plugin createPlugin(MavenProject project) { return createPlugin(project.getGroupId(), project.getArtifactId(), project.getVersion()); } private Plugin createPlugin(String groupId, String artifactId, String version) { Plugin plugin = new Plugin(); plugin.setGroupId(groupId); plugin.setArtifactId(artifactId); plugin.setVersion(version); return plugin;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 12.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java
} private Artifact toArtifact(Plugin plugin, RepositorySystemSession session) { return new DefaultArtifact( plugin.getGroupId(), plugin.getArtifactId(), null, "jar", plugin.getVersion(), session.getArtifactTypeRegistry().get("maven-plugin")); } @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 15:32:43 UTC 2025 - 12.3K bytes - Viewed (0)