Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ComponentData (0.41 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ComponentData.java

    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    import org.gradle.api.internal.attributes.ImmutableAttributes;
    
    class ComponentData {
        final ModuleVersionIdentifier coordinates;
        final ImmutableAttributes attributes;
    
        ComponentData(ModuleVersionIdentifier coordinates, ImmutableAttributes attributes) {
            this.coordinates = coordinates;
            this.attributes = attributes;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

            ComponentData ownerData = owner == null ? null : componentCoordinates.get(owner);
            ComponentData componentData = new ComponentData(publication.getCoordinates(), publication.getAttributes());
    
            return ownerData != null
                ? identityFor(ownerData, relativeUrlTo(componentData.coordinates, ownerData.coordinates))
                : identityFor(componentData, null);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.publish.internal.metadata.ComponentData> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ComponentData.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top