Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 123 for nagUser (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractMinimalProvider.java

                .withAdvice("Simply remove the call.")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(7, "for_use_at_configuration_time_deprecation")
                .nagUser();
            return this;
        }
    
        @Override
        public void visitDependencies(TaskDependencyResolveContext context) {
            // When used as an input, add the producing tasks if known
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/JavaToolchainQueryService.java

                    )
                    .withUserManual("toolchains", "sub:download_repositories") //has no effect due to bug in DeprecationLogger.warnOfChangedBehaviour
                    .nagUser();
            }
        }
    
        private JavaToolchain downloadToolchain(JavaToolchainSpec spec) {
            File installation;
            try {
                installation = installService.tryInstall(spec);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/jvm/war/src/main/java/org/gradle/api/plugins/WarPlugin.java

                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(8, "war_plugin_configure_configurations")
                .nagUser();
    
            configureConfigurations((RoleBasedConfigurationContainerInternal) configurationContainer, mainFeature);
        }
    
        @SuppressWarnings("deprecation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

                .withProblemId("repository-jcenter")
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(6, "jcenter_deprecation")
                .nagUser();
        }
    
        @Override
        public MavenArtifactRepository mavenCentral(Map<String, ?> args) {
            Map<String, Object> modifiedArgs = new HashMap<>(args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/WriteProperties.java

            DeprecationLogger.deprecateProperty(WriteProperties.class, "outputFile").replaceWith("destinationFile")
                .willBeRemovedInGradle9()
                .withDslReference()
                .nagUser();
        }
    
        /**
         * Sets the output file to write the properties to.
         *
         * @deprecated Use {@link #getDestinationFile()} instead.
         *
         * @since 4.0
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

        DeprecationLogger.deprecateSystemProperty(strictModeSystemPropertyName)
            .willBeRemovedInGradle9()
            .withUpgradeGuideSection(7, "strict-kotlin-dsl-precompiled-scripts-accessors-by-default")
            .nagUser()
        if (prop.isBlank()) true
        else java.lang.Boolean.parseBoolean(prop)
    }
    
    
    private
    fun configureKotlinCompilerArguments(
        objects: ObjectFactory,
        implicitImports: ImplicitImports,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/util/VersionNumber.java

            DeprecationLogger.deprecateType(VersionNumber.class)
                .willBeRemovedInGradle9()
                .withUpgradeGuideSection(majorVersion, "org_gradle_util_reports_deprecations")
                .nagUser();
        }
    
        private static final DefaultScheme DEFAULT_SCHEME = new DefaultScheme();
        private static final SchemeWithPatchVersion PATCH_SCHEME = new SchemeWithPatchVersion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top