Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for pluginManager (0.4 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/plugins/PluginManager.java

     */
    @HasInternalProtocol
    @NonExtensible
    public interface PluginManager {
    
        /**
         * Applies the plugin with the given ID. Does nothing if the plugin has already been applied.
         * <p>
         * Plugins in the {@code "org.gradle"} namespace can be applied directly via name.
         * That is, the following two lines are equivalent…
         * <pre class='autoTested'>
         * pluginManager.apply "org.gradle.java"
         * pluginManager.apply "java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java

    import org.apache.maven.settings.Settings;
    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    
    /**
     */
    @Deprecated
    public interface PluginManager {
        String ROLE = PluginManager.class.getName();
    
        void executeMojo(MavenProject project, MojoExecution execution, MavenSession session)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.PluginManager.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 723 bytes
    - Viewed (0)
  4. pkg/kubelet/pluginmanager/plugin_manager.go

    limitations under the License.
    */
    
    package pluginmanager
    
    import (
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/kubelet/config"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/cache"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/operationexecutor"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 01 05:56:33 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. pkg/volume/csimigration/plugin_manager.go

    }
    
    // PluginManager keeps track of migrated state of in-tree plugins
    type PluginManager struct {
    	PluginNameMapper
    	featureGate featuregate.FeatureGate
    }
    
    // NewPluginManager returns a new PluginManager instance
    func NewPluginManager(m PluginNameMapper, featureGate featuregate.FeatureGate) PluginManager {
    	return PluginManager{
    		PluginNameMapper: m,
    		featureGate:      featureGate,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

            project.pluginManager.apply(SwiftPackageManagerExportPlugin)
    
            project.pluginManager.apply("swift-application")
            lib1Project.pluginManager.apply("swift-library")
            lib2Project.pluginManager.apply("swift-library")
            lib3Project.pluginManager.apply("swift-library")
    
            project.application.sourceCompatibility = SwiftVersion.SWIFT3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

            pojoProject.pluginManager.apply(JavaPlugin)
            def beanProject = TestUtil.createChildProject(project, 'bean')
            beanProject.pluginManager.apply(JavaPlugin)
    
            beanProject.dependencies {
                runtimeOnly project(path: pojoProject.path)
            }
    
            when:
            project.pluginManager.apply(EarPlugin)
            project.dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/distribution/plugins/DistributionPluginTest.groovy

            when:
            project.pluginManager.apply(DistributionPlugin)
    
            then:
            def task = project.tasks.distZip
            task instanceof Zip
            task.archiveFile.get().asFile == project.file("build/distributions/test-project.zip")
        }
    
        def "adds distZip task for custom distribution"() {
            when:
            project.pluginManager.apply(DistributionPlugin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/ComponentModelBasePluginTest.groovy

            }
    
            then:
            project.pluginManager.pluginContainer.size() == 5
            project.pluginManager.pluginContainer.findPlugin(ComponentBasePlugin) != null
            project.pluginManager.pluginContainer.findPlugin(BinaryBasePlugin) != null
            project.pluginManager.pluginContainer.findPlugin(LanguageBasePlugin) != null
            project.pluginManager.pluginContainer.findPlugin(LifecycleBasePlugin) != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

            when:
            project.pluginManager.apply(BasePlugin)
    
            then:
            project.convention.plugins.base instanceof BasePluginConvention
            project.extensions.findByType(DefaultArtifactPublicationSet) != null
            project.extensions.findByType(BasePluginExtension) != null
        }
    
        def "adds extension object"() {
            when:
            project.pluginManager.apply(BasePlugin)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top