Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 107 for getPlugins (0.28 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

        public org.apache.maven.plugin.MojoExecution getDelegate() {
            return delegate;
        }
    
        @Override
        public Plugin getPlugin() {
            return new Plugin() {
                @Override
                public org.apache.maven.api.model.Plugin getModel() {
                    return delegate.getPlugin().getDelegate();
                }
    
                @Override
                public PluginDescriptor getDescriptor() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProjectConfigurationTracker.java

        }
    
        private static class ProjectConfigurationResult {
            private final Map<InternalPluginIdentifier, PluginApplicationResult> pluginApplicationResults = new ConcurrentHashMap<>();
    
            void increment(PluginApplication pluginApplication, long duration) {
                InternalPluginIdentifier plugin = pluginApplication.getPlugin();
                pluginApplicationResults
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionPlanItem.java

        }
    
        public String getLifecyclePhase() {
            return mojoExecution.getLifecyclePhase();
        }
    
        public Plugin getPlugin() {
            final MojoDescriptor mojoDescriptor = getMojoExecution().getMojoDescriptor();
            return mojoDescriptor.getPluginDescriptor().getPlugin();
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugins.go

    	ps.registry[name] = plugin
    }
    
    // getPlugin creates an instance of the named plugin.  It returns `false` if
    // the name is not known. The error is returned only when the named provider was
    // known but failed to initialize.  The config parameter specifies the io.Reader
    // handler of the configuration file for the cloud provider, or nil for no configuration.
    func (ps *Plugins) getPlugin(name string, config io.Reader) (Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/PluginSpecBuilderAccessorsClassPathTest.kt

                val accessorsClass = loadClass(className)
                assertThat(
                    accessorsClass.declaredMethods.map { it.name },
                    hasItems("getMy", "getOwn", "getPlugin")
                )
    
                val expectedPluginSpec = mock<PluginDependencySpec>()
                val plugins = mock<PluginDependenciesSpec> {
                    on { id(any()) } doReturn expectedPluginSpec
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalProjectConfigurationResult.java

        /**
         * @since 5.1
         */
        interface InternalPluginApplicationResult {
    
            /**
             * Returns the identifier of this plugin.
             */
            InternalPluginIdentifier getPlugin();
    
            /**
             * Returns the total configuration time of this plugin.
             */
            Duration getTotalConfigurationTime();
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java

            return source;
        }
    
        public String getExecutionId() {
            return executionId;
        }
    
        public Plugin getPlugin() {
            if (mojoDescriptor != null) {
                return mojoDescriptor.getPluginDescriptor().getPlugin();
            }
    
            return plugin;
        }
    
        public MojoDescriptor getMojoDescriptor() {
            return mojoDescriptor;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 15:52:23 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. subprojects/build-events/src/main/java/org/gradle/internal/build/event/types/DefaultPluginApplicationResult.java

            this.plugin = plugin;
            this.totalConfigurationTime = totalConfigurationTime;
        }
    
        @Override
        public InternalPluginIdentifier getPlugin() {
            return plugin;
        }
    
        @Override
        public Duration getTotalConfigurationTime() {
            return totalConfigurationTime;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 29 00:04:07 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/CorePluginUseIntegrationSpec.groovy

                    ++i
                }
                plugins.withId("$UNQUALIFIED_JAVA") {
                    ++i
                }
                assert i == 2
    
                assert plugins.getPlugin("$QUALIFIED_JAVA")
                assert plugins.getPlugin("$UNQUALIFIED_JAVA")
            """
    
            then:
            succeeds "help"
    
            where:
            pluginId << [QUALIFIED_JAVA, UNQUALIFIED_JAVA]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/CycleDetectedInPluginGraphException.java

            super("A cycle was detected in the component graph of the plugin: " + plugin.getArtifactId());
    
            this.plugin = plugin;
        }
    
        public Plugin getPlugin() {
            return plugin;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top