Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for plugin1 (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    See the <<scala_plugin#sec:scala_target,Scala plugin documentation>> for details.
    
    ==== `pluginBundle` dropped in Plugin Publish plugin
    
    Gradle 8 no longer supports the `pluginBundle` extension.
    Its functionality has been merged into the `gradlePlugin` block.
    These changes require recent versions of the Plugin Publish plugin (link:https://plugins.gradle.org/plugin/com.gradle.plugin-publish/1.1.0[1.0.+]).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            }
    
            where:
            reservedName  | prefix
            "bundles"     | "bundles"
            "versions"    | "versions"
            "plugins"     | "plugins"
            "bundles-my"  | "bundles"
            "versions-my" | "versions"
            "plugins-my"  | "plugins"
        }
    
        @VersionCatalogProblemTestFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    |===
    
    [horizontal]
    [.green]#✓#:: Supported plugin
    [.yellow]#⚠#:: Partially supported plugin
    [.red]#✖#:: Unsupported plugin
    
    [[config_cache:plugins:community]]
    === Community plugins
    
    Please refer to issue link:{gradle-issues}13490[gradle/gradle#13490] to learn about the status of community plugins.
    
    [[config_cache:troubleshooting]]
    == Troubleshooting
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            if (getBuildPlugins() != null) {
                for (Plugin plugin : getBuildPlugins()) {
                    if (pluginGroupId.equals(plugin.getGroupId()) && pluginArtifactId.equals(plugin.getArtifactId())) {
                        dom = (Xpp3Dom) plugin.getConfiguration();
    
                        if (executionId != null) {
                            for (PluginExecution execution : plugin.getExecutions()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                        if (versions.get(key) == null) {
                            versions.put(key, plugin.getVersion());
                            plugins.put(key, plugin);
                        }
                    }
                    PluginManagement mgmt = build.getPluginManagement();
                    if (mgmt != null) {
                        for (Plugin plugin : mgmt.getPlugins()) {
                            String key = plugin.getKey();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Kube-scheduler deprecated all non-csi volumelimit plugins and removed those from defaults plugins. 
      - AzureDiskLimits
      - CinderLimits
      - EBSLimits
      - GCEPDLimits
      
      The NodeVolumeLimits plugin can handle the same functionality as the above plugins since the above volume types are migrated to CSI.
      Please remove those plugins and replace them with the NodeVolumeLimits plugin if you explicitly use those plugins in the scheduler config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top