Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for getConfigurations (0.56 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/RealisedIvyModuleResolveMetadata.java

            for (String potentialVariantName : getConfigurationNames()) {
                if (!configurationDefinitions.containsKey(potentialVariantName)) {
                    builder.add(getConfiguration(potentialVariantName));
                }
            }
            return builder.build();
        }
    
        @Override
        public MutableIvyModuleResolveMetadata asMutable() {
            return metadata.asMutable();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            } catch (Exception e) {
                throw new PluginContainerException(mojoDescriptor, pluginRealm, "Unable to lookup Mojo", e);
            }
    
            XmlNode dom = mojoExecution.getConfiguration() != null
                    ? mojoExecution.getConfiguration().getDom()
                    : null;
    
            PlexusConfiguration pomConfiguration;
    
            if (dom == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

            LocalComponentGraphResolveState state = getComponentState(module, componentIdentifier);
            ConfigurationGraphResolveState configuration = state.getConfiguration(configurationName);
            if (configuration == null) {
                throw new IllegalArgumentException(String.format("Expected configuration '%s' to be present in %s", configurationName, componentIdentifier));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

            WrapperExecutor wrapper = WrapperExecutor.forProjectDirectory(layout.getRootDirectory());
            if (wrapper.getDistribution() != null) {
                return new ZippedDistribution(wrapper.getConfiguration(), clock);
            }
            return getDownloadedDistribution(GradleVersion.current().getVersion());
        }
    
        /**
         * Returns the distribution installed in the specified directory.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                authBuilder.addPrivateKey(server.getPrivateKey(), server.getPassphrase());
                authSelector.add(server.getId(), authBuilder.build());
    
                if (server.getConfiguration() != null) {
                    XmlNode dom = server.getDelegate().getConfiguration();
                    List<XmlNode> children = dom.getChildren().stream()
                            .filter(c -> !"wagonProvider".equals(c.getName()))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                    plugin.setArtifactId(extension.getArtifactId());
                    plugin.setVersion(extension.getVersion());
                    XmlNode configuration = extension.getDelegate().getConfiguration();
                    if (configuration != null) {
                        plugin.setConfiguration(new Xpp3Dom(configuration));
                    }
                    extensionPlugins.add(plugin);
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/DefaultMavenModuleResolveMetadata.java

            DefaultConfigurationMetadata md = (DefaultConfigurationMetadata) super.populateConfigurationFromDescriptor(name, configurationDefinitions);
            if (filterConstraints && md != null) {
                // if the first call to getConfiguration is done before getDerivedVariants() is called
                // then it means we're using the legacy matching, without attributes, and that the metadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                    realm,
                    Collections.singleton(artifacts.get(0).getFile()),
                    extension.getGroupId() + ":" + extension.getArtifactId(),
                    extension.getConfiguration());
        }
    
        private List<Artifact> resolveExtension(
                CoreExtension extension,
                RepositorySystemSession repoSession,
                List<RemoteRepository> repositories,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java

                            .get("key"));
            org.codehaus.plexus.util.xml.Xpp3Dom toolchainConfiguration = (org.codehaus.plexus.util.xml.Xpp3Dom)
                    result.getEffectiveToolchains().getToolchains().get(0).getConfiguration();
            assertEquals(
                    interpolatedValue, toolchainConfiguration.getChild("jdkHome").getValue());
            assertNotNull(result.getProblems());
            assertEquals(0, result.getProblems().size());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifier.java

        }
    
        public Collection<ComponentVerificationMetadata> getVerificationMetadata() {
            return verificationMetadata.values();
        }
    
        public DependencyVerificationConfiguration getConfiguration() {
            return config;
        }
    
        public List<String> getTopLevelComments() {
            return topLevelComments;
        }
    
        public List<String> getSuggestedWriteFlags() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top