Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 99 for getConfigurations (0.32 sec)

  1. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.diagnostics.AbstractDependencyReportTask.getConfigurations()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractDependencyReportTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableMavenModuleResolveMetadataTest.groovy

            immutable.getConfiguration("compile").hierarchy as List == ["compile"]
            immutable.getConfiguration("runtime").hierarchy as List == ["runtime", "compile"]
            immutable.getConfiguration("master").hierarchy as List == ["master"]
            immutable.getConfiguration("test").hierarchy as List == ["test", "runtime", "compile"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.Project.getComponents()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Method <org.gradle.api.Project.getConfigurations()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Project.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMavenModuleResolveMetadataTest.groovy

            when:
            def compileArtifacts = metadata.getConfiguration("compile").artifacts
            def runtimeArtifacts = metadata.getConfiguration("runtime").artifacts
            def defaultArtifacts = metadata.getConfiguration("default").artifacts
    
            then:
            runtimeArtifacts.size() == compileArtifacts.size()
            defaultArtifacts.size() == runtimeArtifacts.size()
        }
    
        def "recognises pom packaging"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultMojoExecutionConfigurator.java

                    pomConfiguration = pluginExecution.getDelegate().getConfiguration();
                } else if (allowPluginLevelConfig) {
                    pomConfiguration = plugin.getDelegate().getConfiguration();
                }
    
                XmlNode mojoConfiguration = mojoExecution.getConfiguration() != null
                        ? mojoExecution.getConfiguration().getDom()
                        : null;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilderTest.groovy

            def variant = root.rootComponent.getConfiguration('conf')
    
            when:
            builder.validator.validateMutation(mutationType)
            def otherRoot = builder.toRootComponent('root')
    
            then:
            root.rootComponent.is(otherRoot.rootComponent)
            root.rootComponent.metadata.is(otherRoot.rootComponent.metadata)
            !otherRoot.rootComponent.getConfiguration('conf').is(variant)
    
            when:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

            this.signatureVerificationService = signatureVerificationServiceFactory.create(localKeyring, keyServers(), verifier.getConfiguration().isUseKeyServers());
        }
    
        private List<URI> keyServers() {
            return DefaultKeyServers.getOrDefaults(verifier.getConfiguration().getKeyServers());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultPluginConfigurationExpander.java

                XmlNode pluginConfiguration = plugin.getConfiguration();
                if (pluginConfiguration != null) {
                    return plugin.withExecutions(map(
                            plugin.getExecutions(),
                            execution -> execution.withConfiguration(
                                    XmlNode.merge(execution.getConfiguration(), pluginConfiguration))));
                } else {
                    return plugin;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java

        } // -- void addGoal( String )
    
        /**
         * Get configuration to pass to the goals.
         *
         * @return Object
         */
        public Object getConfiguration() {
            return this.configuration;
        } // -- Object getConfiguration()
    
        /**
         * Method getGoals.
         *
         * @return List
         */
        public java.util.List<String> getGoals() {
            if (this.goals == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/ConfigurationMetadataFactory.java

         *
         * @return Null if the configuration with the given name does not exist.
         */
        @Nullable
        LocalConfigurationGraphResolveMetadata getConfiguration(String name);
    
        /**
         * Get all names such that {@link #getConfiguration(String)} return a non-null value.
         */
        Set<String> getConfigurationNames();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top