Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,466 for pluginA (0.13 sec)

  1. maven-api-impl/src/test/remote-repo/org/apache/maven/plugins/maven-metadata.xml

          <artifactId>maven-compiler-plugin</artifactId>
        </plugin>
        <plugin>
          <name>Maven Integration Test Plugin</name>
          <prefix>resources</prefix>
          <artifactId>maven-resources-plugin</artifactId>
        </plugin>
        <plugin>
          <name>Maven Integration Test Plugin</name>
          <prefix>plugin</prefix>
          <artifactId>maven-plugin-plugin</artifactId>
        </plugin>
      </plugins>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/plugins_providers.go

    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    	// Skip appending the in-tree plugin to the list of plugins to be probed/initialized
    	// if the plugin unregister feature flag is set
    	if featureGate.Enabled(pluginInfo.pluginUnregisterFeature) {
    		logger.Info("Skip registration of plugin since feature flag is enabled", "plugin", inTreePluginName, "feature", pluginInfo.pluginUnregisterFeature)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

            buildFile("""
                plugins {
                    id("test-convention-plugin")
                }
            """)
    
            executer.noDeprecationChecks()
    
            when:
            configurationCacheFails(":help")
    
            then:
            failure.assertOutputContains("Hello")
            problems.assertFailureHasProblems(failure) {
                withProblem("Plugin 'test-convention-plugin': external process started")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

            if (build != null) {
                List<Plugin> plugins = build.getPlugins();
                Map<Object, Plugin> normalized = new LinkedHashMap<>(plugins.size() * 2);
    
                for (Plugin plugin : plugins) {
                    Object key = plugin.getKey();
                    Plugin first = normalized.get(key);
                    if (first != null) {
                        plugin = merger.mergePlugin(plugin, first);
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/DefaultInjectedClasspathPluginResolver.java

    import org.gradle.internal.lazy.Lazy;
    import org.gradle.plugin.management.internal.PluginRequestInternal;
    import org.gradle.plugin.use.PluginId;
    import org.gradle.plugin.use.resolve.internal.PluginResolution;
    import org.gradle.plugin.use.resolve.internal.PluginResolutionResult;
    import org.gradle.plugin.use.resolve.internal.PluginResolutionVisitor;
    import org.gradle.plugin.use.resolve.internal.PluginResolver;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:19:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CustomPluginIntegrationTest.groovy

    import org.gradle.api.*;
    import org.gradle.api.internal.plugins.DslObject;
    
    public class CustomPlugin implements Plugin<Project> {
        public void apply(Project p) {
          new DslObject(p).getExtensions().getExtraProperties().set("prop", "value");
        }
    }
    '''
            builder.resourceFile('META-INF/gradle-plugins/custom.properties') << '''
    implementation-class=CustomPlugin
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/PluginBinaryCompatibilityCrossVersionSpec.groovy

                class SomePlugin implements Plugin<Project> {
                    void apply(Project p) {
                        p.apply plugin: 'java'
                        p.apply plugin: 'idea'
    
                        // Verify can use the types with and without various type declarations
    
                        JavaPluginConvention c = p.convention.plugins.java
                        c.sourceCompatibility = 1.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

                            .dependencies(deps)
                            .build();
    
                    plugins.put(key, plugin);
                }
            }
        }
    
        private static String getExecutionId(Plugin plugin, String goal) {
            Set<String> existingIds = plugin != null
                    ? plugin.getExecutions().stream().map(PluginExecution::getId).collect(Collectors.toSet())
                    : Set.of();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/apache/maven/its/plugins/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata>
      <plugins>
        <plugin>
          <name>Maven Integration Test Plugin</name>
          <prefix>it</prefix>
          <artifactId>maven-it-plugin</artifactId>
        </plugin>
      </plugins>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 236 bytes
    - Viewed (0)
  10. cmd/kubelet/app/plugins_providers.go

    		// TODO: fail and return here once alpha only tests can set the feature flags for a plugin correctly
    	}
    
    	// Skip appending the in-tree plugin to the list of plugins to be probed/initialized
    	// if the plugin unregister feature flag is set
    	if featureGate.Enabled(pluginInfo.pluginUnregisterFeature) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top