Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 182 for getConfigurations (0.64 sec)

  1. 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)
  2. 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)
  3. 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)
  4. maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultReportConfigurationExpander.java

                    XmlNode parentDom = reportPlugin.getDelegate().getConfiguration();
    
                    if (parentDom != null) {
                        for (ReportSet execution : reportPlugin.getReportSets()) {
                            XmlNode childDom = execution.getDelegate().getConfiguration();
                            childDom = XmlNode.merge(childDom, parentDom);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/configuration/DefaultBeanConfigurationRequest.java

                        if (pluginExecutionId.equals(execution.getId())) {
                            setConfiguration(execution.getConfiguration());
                            break;
                        }
                    }
                } else {
                    setConfiguration(plugin.getConfiguration());
                }
            }
            return this;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. 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)
  7. maven-core/src/test/java/org/apache/maven/project/canonical/CanonicalProjectBuilderTest.java

                    break;
                }
            }
    
            assertNotNull(plugin);
    
            assertEquals("1.0", plugin.getVersion());
    
            XmlNode configuration = plugin.getDelegate().getConfiguration();
    
            assertEquals(
                    "src/conf/plexus.conf",
                    configuration.getChild("plexusConfiguration").getValue());
    
            assertEquals(
                    "src/conf/plexus.properties",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractLazyModuleComponentResolveMetadataTest.groovy

            configuration("runtime")
    
            expect:
            metadata.toString() == 'group:module:version'
            metadata.getConfiguration('runtime').toString() == 'group:module:version configuration runtime'
        }
    
        def "returns null for unknown configuration"() {
            expect:
            metadata.getConfiguration("conf") == null
        }
    
        def configuration(String name, List<String> extendsFrom = []) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            conf3.getDependencies().add(dependency3)
    
            then:
            state.getConfiguration("child1").metadata.dependencies*.source == [dependency1, dependency2, dependency3]
            state.getConfiguration("child2").metadata.dependencies*.source == [dependency1]
            state.getConfiguration("other").metadata.dependencies.isEmpty()
        }
    
        def "builds and caches exclude rules for a configuration"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top