Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 103 for plugin1 (0.16 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    === Java Library Distribution Plugin utilizes Java Library Plugin
    
    The <<java_library_distribution_plugin.adoc#java_library_distribution_plugin,Java Library Distribution Plugin>> is now based on the
    <<java_library_plugin.adoc#java_library_plugin, Java Library Plugin>> instead of the <<java_plugin.adoc#java_plugin, Java Plugin>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				// store the jstree instance id to the container element
    				$.data(this, "jstree_instance_id", instance_id);
    				// clean up all plugins
    				b.plugins = $.isArray(b.plugins) ? b.plugins : $.jstree.defaults.plugins.slice();
    				b.plugins.unshift("core");
    				// only unique plugins
    				b.plugins = b.plugins.sort().join(",,").replace(/(,|^)([^,]+)(,,\2)+(,|$)/g,"$1$2$4").replace(/,,+/g,",").replace(/,$/,"").split(",");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top