Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for AttributeContainer (0.19 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/attributes/HasAttributes.java

     */
    
    package org.gradle.api.attributes;
    
    /**
     * Represents something that carries attributes by utilizing an
     * {@link AttributeContainer}
     *
     * @since 3.3
     */
    public interface HasAttributes {
    
        /**
         * Returns the attributes
         */
        AttributeContainer getAttributes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 894 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/type/ArtifactTypeRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.type;
    
    import org.gradle.api.artifacts.type.ArtifactTypeContainer;
    import org.gradle.api.attributes.AttributeContainer;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    import org.gradle.internal.Factory;
    import org.gradle.internal.component.model.ComponentArtifactMetadata;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 14:52:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/MutableModuleComponentResolveMetadata.java

        MutableComponentVariant addVariant(MutableComponentVariant variant);
    
        MutableComponentVariant addVariant(String variantName, ImmutableAttributes attributes);
    
        AttributeContainer getAttributes();
    
        void setAttributes(AttributeContainer attributes);
    
        boolean isExternalVariant();
    
        void setExternalVariant(boolean externalVariant);
    
        boolean isComponentMetadataRuleCachingEnabled();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AdditionalVariantsMetadataRulesIntegrationTest.groovy

                        componentMetadataContext.getDetails().addVariant("my-samples", variantMetadata -> {
                            variantMetadata.attributes(attributeContainer -> {
                                attributeContainer.attribute(Category.CATEGORY_ATTRIBUTE, category);
                                attributeContainer.attribute(DocsType.DOCS_TYPE_ATTRIBUTE, docsType);
                            });
                            variantMetadata.withFiles(variantFiles -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 16:23:01 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyMetadata.java

         *
         * @return the attributes of this dependency
         *
         * @since 4.8
         */
        AttributeContainer getAttributes();
    
        /**
         * Adjust the attributes of this dependency
         *
         * @since 4.8
         */
        SELF attributes(Action<? super AttributeContainer> configureAction);
    
        /**
         * The module identifier of the component. Returns the same information
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 16 13:58:18 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributeDesugaring.java

    import org.gradle.api.artifacts.component.ComponentSelector;
    import org.gradle.api.artifacts.component.ModuleComponentSelector;
    import org.gradle.api.attributes.Attribute;
    import org.gradle.api.attributes.AttributeContainer;
    import org.gradle.internal.Cast;
    import org.gradle.internal.component.external.model.DefaultModuleComponentSelector;
    import org.gradle.internal.component.local.model.DefaultProjectComponentSelector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/DependencyAttributesValidator.java

     */
    package org.gradle.api.publish.internal.metadata;
    
    import org.gradle.api.attributes.AttributeContainer;
    
    import java.util.Optional;
    
    public interface DependencyAttributesValidator {
        String getSuppressor();
        String getExplanation();
    
        Optional<String> validationErrorFor(String group, String name, AttributeContainer attributes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 957 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/attributes/HasConfigurableAttributes.java

     * limitations under the License.
     */
    
    package org.gradle.api.attributes;
    
    import org.gradle.api.Action;
    
    /**
     * Represents something that carries attributes by utilizing an
     * {@link AttributeContainer} that is configurable.
     *
     * @param <SELF> type extending this interface
     *
     * @since 3.4
     */
    public interface HasConfigurableAttributes<SELF> extends HasAttributes {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VariantSelectionDetails.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Action;
    import org.gradle.api.attributes.AttributeContainer;
    
    /**
     * Allows configuring the variant-aware selection aspects of a specific
     * dependency. This includes the ability to substitute a dependency on
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyConstraint.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Action;
    import org.gradle.api.attributes.AttributeContainer;
    import org.gradle.api.attributes.HasConfigurableAttributes;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents a constraints over all, including transitive, dependencies.
     *
     * @since 4.5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.7K bytes
    - Viewed (0)
Back to top