Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 77 for nagUser (3.38 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/TestReport.java

            DeprecationLogger.deprecateProperty(TestReport.class, "destinationDir").replaceWith("destinationDirectory")
                    .willBeRemovedInGradle9()
                    .withDslReference()
                    .nagUser();
            return getDestinationDirectory().get().getAsFile();
        }
    
        /**
         * Sets the directory to write the HTML report to.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultArtifactHandler.java

                    .willBecomeAnErrorInGradle9()
                    .withUserManual("declaring_dependencies", "sec:deprecated-configurations")
                    .nagUser();
            }
    
            // In Gradle 8.1, we'll update this check to only use the consumption deprecation, which is the only one
            // that it should need to check here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledSettingsScript.kt

                .withAdvice("Use a version of the plugin published with Gradle >= 6.0.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "kotlin_dsl_precompiled_gradle_lt_6")
                .nagUser()
        }
    
        override val fileOperations by lazy { fileOperationsFor(delegate) }
    
        override val processOperations by lazy { delegate.serviceOf<ProcessOperations>() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/GenerateMavenPom.java

                .withContext("This method was never intended for public use.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "generate_maven_pom_method_deprecations")
                .nagUser();
    
            return this;
        }
    
        /**
         * The values set by this method are ignored.
         *
         * @deprecated This method will be removed in Gradle 9.0.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/cache/internal/LegacyCacheCleanupEnablement.java

                        .willBeRemovedInGradle9()
                        .withUpgradeGuideSection(8, "disabling_user_home_cache_cleanup")
                        .nagUser();
                    return cleanup.equals("false");
                }
            }
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 09 22:09:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginOptions.kt

            .withAdvice("Configure a Java Toolchain instead.")
            .willBeRemovedInGradle9()
            .withUpgradeGuideSection(7, "kotlin_dsl_plugin_toolchains")
            .nagUser()
    }
    
    
    internal
    fun Project.kotlinDslPluginOptions(action: KotlinDslPluginOptions.() -> Unit) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 06:37:53 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledInitScript.kt

                .withAdvice("Use a version of the plugin published with Gradle >= 6.0.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "kotlin_dsl_precompiled_gradle_lt_6")
                .nagUser()
        }
    
        override val fileOperations by lazy { fileOperationsFor(delegate, null) }
    
        override val processOperations by lazy { delegate.serviceOf<ProcessOperations>() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/util/RelativePathUtil.java

            DeprecationLogger.deprecateType(RelativePathUtil.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        public RelativePathUtil() {
            logDeprecation();
        }
    
        /**
         * Returns a relative path from 'from' to 'to'
         *
         * @param from where to calculate from
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/DefaultWorkValidationWarningRecorder.java

                        .withContext("Execution optimizations are disabled to ensure correctness.")
                        .willBeRemovedInGradle9())
                        .nagUser();
                }
            );
        }
    
        @Override
        public void reportWorkValidationWarningsAtEndOfBuild() {
            int workWithFailures = workWithFailuresCount.getAndSet(0);
            if (workWithFailures > 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/SingleMessageLogger.java

        static {
            DeprecationLogger.deprecateType(SingleMessageLogger.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top