Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for nagUser (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationExecutor.java

            DeprecationLogger.deprecateInternalApi("BuildOperationExecutor.getCurrentOperation()")
                .willBeRemovedInGradle9()
                .undocumented()
                .nagUser();
            BuildOperationRef operationRef = currentBuildOperationRef.get();
            if (operationRef == null) {
                throw new IllegalStateException("No operation is currently running.");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. 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()) {
                String val = matcher.group(1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. 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() {
            return identityPath;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/process/JavaExecSpec.java

            DeprecationLogger.deprecateProperty(JavaExecSpec.class, "main")
                    .replaceWith("mainClass")
                    .willBeRemovedInGradle9()
                    .withDslReference()
                    .nagUser();
    
            getMainClass().set(main);
            return this;
        }
    
        /**
         * Returns the arguments passed to the main class to be executed.
         */
        @Nullable @Optional @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/SettingsDelegate.kt

                DeprecationLogger.deprecateType(SettingsDelegate::class.java)
                    .willBeRemovedInGradle9()
                    .undocumented()
                    .nagUser()
            }
        }
    
        internal
        abstract val delegate: Settings
    
        override fun getSettings(): Settings =
            delegate.settings
    
        override fun getBuildscript(): ScriptHandler =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ExtensibleDynamicObject.java

    //        DeprecationLogger.deprecateType(org.gradle.api.internal.HasConvention.class)
    //            .willBeRemovedInGradle9()
    //            .withUpgradeGuideSection(8, "deprecated_access_to_conventions")
    //            .nagUser();
            return convention;
        }
    
        public void addObject(DynamicObject object, Location location) {
            switch (location) {
                case BeforeConvention:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantMapping.java

                    .withUserManual("publishing_ivy", "configurations_marked_as_non_transitive")
                    .nagUser();
            }
    
            Set<String> seen = new HashSet<>();
    
            // Visit implicit sub-variant
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/ValidatePlugins.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/tasks/GradleBuild.java

                .replaceWith("dir")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "configuring_custom_build_layout")
                .nagUser();
        }
    
        /**
         * Returns the tasks that should be executed for this build.
         *
         * @return The sequence. May be empty. Never returns null.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ConfigureUtil.java

            DeprecationLogger.deprecateType(ConfigureUtil.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        /**
         * Wrapper configure action.
         *
         * @param <T> the action type.
         */
        @Deprecated
        public static class WrappedConfigureAction<T> implements Action<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top