Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for nagUser (0.23 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "test_framework_implementation_dependencies")
                .nagUser();
    
            if (isModule) {
                return new ForkedTestClasspath(
                    pathWithAdditionalModules(classpath, additional.applicationClasspath),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                    "\n" +
                    outputHashes)
                .willBecomeAnErrorInGradle9()
                .undocumented()
                .nagUser();
            try {
                // We move the inconsistent workspace to a "temporary" location as a way to atomically move it out of the permanent workspace.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

                DeprecationLogger.deprecateType(InitScriptApi::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        protected
        abstract val fileOperations: FileOperations
    
        protected
        abstract val processOperations: ProcessOperations
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

                DeprecationLogger.deprecateType(SettingsScriptApi::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        protected
        abstract val fileOperations: FileOperations
    
        protected
        abstract val processOperations: ProcessOperations
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

                    .withAdvice(getUsageMutationAdvice())
                    .willBecomeAnErrorInGradle9()
                    .withUserManual("building_java_projects", "sec:implicit_sourceset_configurations")
                    .nagUser();
            }
    
            private String getUsageDiscoveryMessage(DeprecatableConfiguration conf) {
                String currentUsageDesc = UsageDescriber.describeCurrentUsage(conf);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

    public class GUtil {
    
        static {
            DeprecationLogger.deprecateType(GUtil.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        private static final Pattern WORD_SEPARATOR = Pattern.compile("\\W+");
        private static final Pattern UPPER_LOWER = Pattern.compile("(?m)([A-Z]*)([a-z0-9]*)");
    
        public GUtil() {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/MavenComponentParser.java

                            .willBecomeAnErrorInGradle9()
                            .withUpgradeGuideSection(8, "publishing_artifact_name_different_from_artifact_id_maven")
                            .nagUser();
    
                        artifactCoordinates = ResolvedCoordinates.create(
                            coordinates.getGroup(),
                            artifact.getName(),
                            coordinates.getVersion()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

                .willBecomeAnErrorInGradle9()
                .withUpgradeGuideSection(8, "test_task_fail_on_no_test_executed")
                .nagUser();
        }
    
        boolean testsAreNotFiltered() {
            return !patternFiltersSpecified();
        }
    
        private boolean patternFiltersSpecified() {
            return !filter.getIncludePatterns().isEmpty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    .willBecomeAnErrorInGradle9()
                    .withUpgradeGuideSection(8, "depending_on_root_configuration")
                    .nagUser();
            }
        }
    
        private static boolean isDynamic(SelectorState selector) {
            ResolvedVersionConstraint versionConstraint = selector.getVersionConstraint();
            if (versionConstraint != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

                    ".willBeRemovedInGradle9()" +
                    ".withUpgradeGuideSection(8, \"kotlin_dsl_deprecated_catalogs_plugins_block\")" +
                    ".nagUser();"
                );
            }
        }
    
        private void writePlugin(String alias, PluginModel plugin, boolean asProvider) throws IOException {
            writeLn("/**");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top