Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 98 for getConfigurations (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                        dom = (Xpp3Dom) plugin.getConfiguration();
    
                        if (reportSetId != null) {
                            ReportSet reportSet = plugin.getReportSetsAsMap().get(reportSetId);
                            if (reportSet != null) {
                                Xpp3Dom executionConfiguration = (Xpp3Dom) reportSet.getConfiguration();
                                if (executionConfiguration != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java

                    execution.setLocation("phase", location);
                    execution.setLocation("goals", location);
    
                    XmlNode lifecycleConfiguration = mojo.getConfiguration();
                    if (lifecycleConfiguration != null) {
                        execution.setConfiguration(new Xpp3Dom(lifecycleConfiguration));
                    }
    
                    if (mojo.getDependencies() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 9.1K 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