Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for withoutConstraints (0.34 sec)

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

                .withName("sources")
                .withAttributes(attributesFactory.sourcesVariant(originAttributes))
                .withArtifacts(ImmutableList.of(metadata.optionalArtifact("jar", "jar", "sources")))
                .withoutConstraints()
                .build();
        }
    
        /**
         * Synthesizes a "javadoc" variant since maven metadata cannot represent it
         *
         * @return synthetic metadata for the javadoc-classifier jar
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/DefaultConfigurationMetadata.java

        private ImmutableAttributes computedAttributes;
        private ImmutableCapabilities computedCapabilities;
    
        // Fields used for performance optimizations: we avoid computing the derived dependencies (withConstraints, withoutConstraints, ...)
        // eagerly because it's very likely that those methods would only be called on the selected variant. Therefore it's a waste of time
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/DefaultMavenModuleResolveMetadata.java

                // because if we actually use attribute matching, we can select the platform variant which
                // does use constraints.
                return md.mutate().withoutConstraints().build();
            }
            return md;
        }
    
        private ImmutableList<? extends ModuleComponentArtifactMetadata> getArtifactsForConfiguration() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top