Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 88 for withUpgradeGuideSection (0.38 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/plugins/DslObject.java

    // TODO nag once KGP doesn't register conventions anymore
    //        DeprecationLogger.deprecateType(org.gradle.api.internal.HasConvention.class)
    //            .willBeRemovedInGradle9()
    //            .withUpgradeGuideSection(8, "deprecated_access_to_conventions")
    //            .nagUser();
            if (convention == null) {
                this.convention = DeprecationLogger.whileDisabled(() ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DeprecatedFeaturesListener.kt

        private
        fun nagUserAbout(action: String, upgradeGuideMajorVersion: Int, upgradeGuideSection: String) {
            DeprecationLogger.deprecateAction(action)
                .willBecomeAnErrorInGradle9()
                .withUpgradeGuideSection(upgradeGuideMajorVersion, upgradeGuideSection)
                .nagUser()
        }
    
        private
        fun shouldNagFor(task: TaskInternal, runningTask: TaskInternal?) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/Documentation.java

            }
    
            /**
             * Output: Consult the upgrading guide for further information: UPGRADE_GUIDE_URL
             */
            @CheckReturnValue
            public T withUpgradeGuideSection(int majorVersion, String upgradeGuideSection) {
                return withDocumentation(Documentation.upgradeGuide(majorVersion, upgradeGuideSection));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/RoleBasedConfigurationCreationRequest.java

                .withAdvice(getDefaultReservedNameAdvice(getConfigurationName()))
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "configurations_allowed_usage")
                .nagUser();
        }
    
        /**
         * Issues a deprecation warning when a configuration already exists and Gradle needs to mutate its
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 13:42:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileOrUriNotationConverter.java

                .withAdvice("Use a valid URL or a file path instead.")
                .willBecomeAnErrorInGradle9()
                .withUpgradeGuideSection(8, "deprecated_invalid_url_decoding")
                .nagUser();
            StringBuffer builder = new StringBuffer();
            Matcher matcher = ENCODED_URI.matcher(path);
            while (matcher.find()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultProjectComponentSelector.java

                .withAdvice("Use getBuildPath() to get a unique identifier for the build.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "build_identifier_name_and_current_deprecation")
                .nagUser();
            return DeprecationLogger.whileDisabled(buildIdentifier::getName);
        }
    
        @Override
        public Path getIdentityPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginCheckInService.java

                    MINIMUM_SUPPORTED_PLUGIN_VERSION_SINCE_GRADLE_9.getMinor(),
                    MINIMUM_SUPPORTED_PLUGIN_VERSION_SINCE_GRADLE_9.getMicro()
                ))
                .withUpgradeGuideSection(8, "unsupported_ge_plugin_3.13")
                .nagUser();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 13:28:46 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/util/WrapUtil.java

     */
    @Deprecated
    public class WrapUtil {
    
        private static void logDeprecation(int majorVersion) {
            DeprecationLogger.deprecateType(WrapUtil.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        public WrapUtil() {
            logDeprecation(7);
        }
    
        /**
         * Wraps the given items in a mutable unordered set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 28 16:04:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

                            .withProblemId("missing-java-toolchain-plugin")
                            .willBecomeAnErrorInGradle9()
                            .withUpgradeGuideSection(8, "validate_plugins_without_java_toolchain")
                            .nagUser();
                        spec.getForkOptions().setExecutable(Jvm.current().getJavaExecutable());
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/tasks/GradleBuild.java

                .withAdvice("Please use 'dir' to specify the root of the nested build instead.")
                .replaceWith("dir")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "configuring_custom_build_layout")
                .nagUser();
        }
    
        /**
         * Returns the tasks that should be executed for this build.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top