Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for warnAboutInternalApiUse (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dependencies/AbstractModuleDependency.java

            validateMutation();
            validateNotLegacyConfigured();
            if (attributesFactory == null) {
                warnAboutInternalApiUse("attributes");
                return this;
            }
            if (attributes == null) {
                attributes = attributesFactory.mutable();
            }
            configureAction.execute(attributes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultDependencyConstraint.java

            if (attributesFactory == null) {
                warnAboutInternalApiUse();
                return this;
            }
            validateMutation();
            if (attributes == null) {
                attributes = attributesFactory.mutable();
            }
            configureAction.execute(attributes);
            return this;
        }
    
        private void warnAboutInternalApiUse() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top