Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for plugin1 (0.29 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
            """)
            // plugin 2
            groovyFile(file("plugin2/build.gradle"), "plugins { id 'groovy-gradle-plugin' }")
            groovyFile(file("plugin2/src/main/groovy/my.plugin2.gradle"), "/* no code needed */")
            // subproject1 and subproject2 apply different sets of plugins, so get different classloaders
            groovyFile(file("subproject1/build.gradle"), """
            plugins {
                id 'my.plugin1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. .teamcity/test-buckets.json

    					"platform-base",
    					"platform-jvm",
    					"plugin-development",
    					"plugin-use",
    					"plugins-application",
    					"plugins-distribution",
    					"plugins-groovy",
    					"plugins-java-base",
    					"plugins-java-library",
    					"plugins-jvm-test-fixtures",
    					"plugins-jvm-test-suite",
    					"plugins-test-report-aggregation",
    					"plugins-version-catalog",
    					"precondition-tester",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    func (f *frameworkImpl) getExtensionPoints(plugins *config.Plugins) []extensionPoint {
    	return []extensionPoint{
    		{&plugins.PreFilter, &f.preFilterPlugins},
    		{&plugins.Filter, &f.filterPlugins},
    		{&plugins.PostFilter, &f.postFilterPlugins},
    		{&plugins.Reserve, &f.reservePlugins},
    		{&plugins.PreScore, &f.preScorePlugins},
    		{&plugins.Score, &f.scorePlugins},
    		{&plugins.PreBind, &f.preBindPlugins},
    		{&plugins.Bind, &f.bindPlugins},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    It depends on how they have been published and, specifically, whether they have been published with the necessary <<plugins#sec:plugin_markers,plugin marker artifacts>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Therefore, the `gradle-enterprise` plugin block extension has been deprecated and will be removed in Gradle 9.0.
    
    The Develocity plugin must be applied with an explicit plugin id and version.
    There is no `develocity` shorthand available in the plugins block.
    ```kotlin
    plugins {
        id("com.gradle.develocity") version "3.17.3"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. pkg/volume/testing/testing.go

    	defer plugin.RUnlock()
    	return plugin.NewAttacherCallCount
    }
    
    func (plugin *FakeVolumePlugin) NewDetacher() (volume.Detacher, error) {
    	plugin.Lock()
    	defer plugin.Unlock()
    	plugin.NewDetacherCallCount = plugin.NewDetacherCallCount + 1
    	detacher := plugin.getFakeVolume(&plugin.Detachers)
    	attacherList := plugin.Attachers
    	if len(attacherList) > 0 {
    		detacherList := plugin.Detachers
    		if len(detacherList) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                List<Plugin> plugins,
                String prefix,
                String prefix2,
                ModelBuilderRequest request) {
            Severity errOn31 = getSeverity(request, ModelBuilderRequest.VALIDATION_LEVEL_MAVEN_3_1);
    
            Map<String, Plugin> index = new HashMap<>();
    
            for (Plugin plugin : plugins) {
                if (plugin.getGroupId() == null
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                List<Plugin> plugins,
                String prefix,
                String prefix2,
                ModelBuildingRequest request) {
            Severity errOn31 = getSeverity(request, ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_3_1);
    
            Map<String, Plugin> index = new HashMap<>();
    
            for (Plugin plugin : plugins) {
                if (plugin.getGroupId() == null
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    		if s.Code() == framework.Error {
    			logger.Error(s.AsError(), "Unexpected error running PreEnqueue plugin", "pod", klog.KObj(pod), "plugin", pl.Name())
    		} else {
    			logger.V(4).Info("Status after running PreEnqueue plugin", "pod", klog.KObj(pod), "plugin", pl.Name(), "status", s)
    		}
    		return false
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                Build build = model.getBuild();
                if (build != null) {
                    for (Plugin plugin : build.getPlugins()) {
                        String key = plugin.getKey();
                        if (versions.get(key) == null) {
                            versions.put(key, plugin.getVersion());
                            plugins.put(key, plugin);
                        }
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top