Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for WarPlugin (0.37 sec)

  1. testing/architecture-test/src/changes/archunit-store/configuration-factory-methods.txt

    Method <org.gradle.api.plugins.WarPlugin.configureConfigurations(org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal, org.gradle.api.plugins.jvm.internal.JvmFeatureInternal)> calls method <org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(java.lang.String)> in (WarPlugin.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpClasspathAttributeSupport.java

    import org.gradle.api.artifacts.result.UnresolvedDependencyResult;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.plugins.WarPlugin;
    import org.gradle.internal.jvm.JavaModuleDetector;
    import org.gradle.plugins.ear.EarPlugin;
    import org.gradle.plugins.ide.eclipse.model.AbstractClasspathEntry;
    import org.gradle.plugins.ide.eclipse.model.AbstractLibrary;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    will become an error.
    
    [[war_plugin_configure_configurations]]
    ==== `WarPlugin#configureConfiguration(ConfigurationContainer)`
    
    Starting in Gradle 8.1, calling `WarPlugin#configureConfiguration(ConfigurationContainer)` is deprecated. This method was
    intended for internal use and was never intended to be used as part of the public interface.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

     - The `antlr` configuration created by the `AntlrPlugin`
     - The `zinc` configuration created by the `ScalaBasePlugin`
     - The `providedCompile` and `providedRuntime` configurations created by the `WarPlugin`
    
    These configurations were deprecated for consumption and are now no longer consumable.
    Attempting to consume them will result in an error.
    
    ==== Identical consumable configurations are now an error
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

                });
                return true;
            }
            return false;
        }
    
        boolean packagesJavadocs(MavenProject project) {
            Plugin jarPlugin = plugin("maven-javadoc-plugin", project);
            return jarPlugin != null && pluginGoal("jar", jarPlugin) != null;
        }
    
        private boolean duplicateDependency(org.apache.maven.model.Dependency dependency, MavenProject project, Set<MavenProject> allProjects) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

                library('bar', 'group', 'bar').versionRef('barVersion')
                library('boo', 'group', 'boo').withoutVersion()
                plugin('fooPlugin', 'org.foo.plugin').version('1.0')
                plugin('barPlugin', 'org.bar.plugin').versionRef('barVersion')
                plugin('bazPlugin', 'org.baz.plugin').version('')
            }
    
            then:
            sources.hasDependencyAlias('foo', 'getFoo', "with version <b>1.0</b>")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/v1/defaults_test.go

    						},
    					},
    					{
    						SchedulerName: ptr.To("custom-scheduler"),
    						Plugins: &configv1.Plugins{
    							Bind: configv1.PluginSet{
    								Enabled: []configv1.Plugin{
    									{Name: "BarPlugin"},
    								},
    								Disabled: []configv1.Plugin{
    									{Name: names.DefaultBinder},
    								},
    							},
    						},
    					},
    				},
    			},
    			expected: &configv1.KubeSchedulerConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/configuration/ExecuteDomainObjectCollectionCallbackBuildOperationTypeIntegrationTest.groovy

                }
            """
            buildFile << """
                apply from:'script.gradle'
                class FooPlugin implements Plugin<Project> { void apply(Project p) {} }
                class BarPlugin implements Plugin<Project> { void apply(Project p) {} }
    
                ${domainObjectCreation('foo')}
                ${domainObjectCreation('bar')}
            """
    
            when:
            run('help')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    	// Construct another Pod, and associate its scheduler failure to plugin "barPlugin".
    	hpp2 := clonePod(highPriorityPodInfo.Pod, "hpp2")
    	// This Pod will go to the unschedulable Pod pool.
    	err = q.AddUnschedulableIfNotPresent(logger, q.newQueuedPodInfo(hpp2, "barPlugin"), q.SchedulingCycle())
    	if err != nil {
    		t.Fatalf("unexpected error from AddUnschedulableIfNotPresent: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top