- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 615 for myplugin (0.12 sec)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/DuplicateMojoDescriptorException.java
*/ package org.apache.maven.plugin.descriptor; /** * DuplicateMojoDescriptorException */ public class DuplicateMojoDescriptorException extends InvalidPluginDescriptorException { public DuplicateMojoDescriptorException( String goalPrefix, String goal, String existingImplementation, String newImplementation) { super("Goal: " + goal + " already exists in the plugin descriptor for prefix: " + goalPrefix
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeModule.java
* under the License. */ package org.apache.maven.execution.scope.internal; import com.google.inject.AbstractModule; import org.apache.maven.api.plugin.Log; import org.apache.maven.execution.scope.MojoExecutionScoped; import org.apache.maven.plugin.MojoExecution; import org.apache.maven.project.MavenProject; /** * MojoExecutionScopeModule */ public class MojoExecutionScopeModule extends AbstractModule {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java
import org.apache.maven.plugin.descriptor.io.PluginDescriptorStaxReader; import org.codehaus.plexus.component.repository.ComponentDependency; import org.codehaus.plexus.component.repository.ComponentRequirement; import org.codehaus.plexus.configuration.PlexusConfiguration; import org.codehaus.plexus.configuration.PlexusConfigurationException; /** * Build plugin descriptor object from {@code plugin.xml}. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
api/maven-api-model/src/main/mdo/maven.mdo
} /** * @return a Map of plugins field with {@code Plugins#getKey()} as key * @see Plugin#getKey() */ public Map<String, Plugin> getPluginsAsMap() { return getPlugins().stream().collect(Collectors.toMap(plugin -> plugin.getKey(), plugin -> plugin)); } ]]> </code> </codeSegment> <codeSegment>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 09 11:07:31 UTC 2024 - 115.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java
import org.apache.maven.model.plugin.DefaultPluginConfigurationExpander; import org.apache.maven.model.plugin.DefaultReportConfigurationExpander; import org.apache.maven.model.plugin.DefaultReportingConverter; import org.apache.maven.model.plugin.LifecycleBindingsInjector; import org.apache.maven.model.plugin.PluginConfigurationExpander; import org.apache.maven.model.plugin.ReportConfigurationExpander;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.6K bytes - Viewed (0) -
build-logic-settings/UpdateDevelocityPluginVersion.java
if (f.exists()) { String content = new String(Files.readAllBytes(f.toPath())); content = content.replaceAll("com.gradle:develocity-gradle-plugin:[\\d\\.]*\"", "com.gradle:develocity-gradle-plugin:" + newVersion + '"'); content = content.replaceAll("com.gradle.develocity\"\\).version\\(\"[\\d\\.]*\"", "com.gradle.develocity\"\\).version\\(\"" + newVersion + '"');
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 12 07:58:50 UTC 2024 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Type.java
/** * Artifact type name for javadoc packaged in a JAR file. */ String JAVADOC = "javadoc"; /** * Artifact type name for a Maven plugin. */ String MAVEN_PLUGIN = "maven-plugin"; /** * Artifact type name for a JAR file containing test classes. If the main artifact is placed on the class-path
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon May 13 09:53:45 UTC 2024 - 6.4K bytes - Viewed (0) -
cni/pkg/plugin/plugin_cni_conformance.go
// See the License for the specific language governing permissions and // limitations under the License. package plugin import ( "testing" "github.com/containernetworking/cni/pkg/types" ) // Validate k8sArgs struct works for unmarshalling kubelet args // This is important for CNI plugin conformance func TestLoadArgs(t *testing.T) { kubeletArgs := "IgnoreUnknown=1;K8S_POD_NAMESPACE=istio-system;" +
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed May 29 21:50:09 UTC 2024 - 1.5K bytes - Viewed (0) -
istioctl/pkg/multicluster/remote_secret.go
istioctl --kubeconfig=c0.yaml create-remote-secret --name c0 \ | kubectl --kubeconfig=c1.yaml delete -f - # Create a secret access a remote cluster with an auth plugin istioctl --kubeconfig=c0.yaml create-remote-secret --name c0 --auth-type=plugin --auth-plugin-name=gcp \ | kubectl --kubeconfig=c1.yaml apply -f -`, Args: cobra.NoArgs, RunE: func(c *cobra.Command, args []string) error {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 23.3K bytes - Viewed (0) -
cni/pkg/repair/repaircontroller.go
func redirectRunningPod(pod *corev1.Pod, netns string) error { pi := plugin.ExtractPodInfo(pod) redirect, err := plugin.NewRedirect(pi) if err != nil { return fmt.Errorf("setup redirect: %v", err) } rulesMgr := plugin.IptablesInterceptRuleMgr() if err := rulesMgr.Program(pod.Name, netns, redirect); err != nil { return fmt.Errorf("program redirection: %v", err)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sat Feb 10 00:31:55 UTC 2024 - 10.4K bytes - Viewed (0)