Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for getDocumentationFor (0.26 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/api/internal/DocumentationRegistry.java

         */
        public String getDocumentationFor(String id) {
            return String.format("%s/userguide/%s.html", BASE_URL, id);
        }
    
    
        /**
         * Returns the location of the documentation for the given feature, referenced by id and section. The location may be local or remote.
         */
        public String getDocumentationFor(String id, String section) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 14:14:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/api/internal/DocumentationRegistryTest.groovy

        def "points users at the gradle docs web site"() {
            expect:
            registry.getDocumentationFor('gradle_daemon') == "https://docs.gradle.org/${gradleVersion.version}/userguide/gradle_daemon.html"
        }
    
        def "points users at the gradle docs web site with section"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PlayPluginSmokeTest.groovy

            return "The org.gradle.util.$type type has been deprecated. " +
                "This is scheduled to be removed in Gradle 9.0. " +
                "Consult the upgrading guide for further information: ${new DocumentationRegistry().getDocumentationFor("upgrading_version_${major}","org_gradle_util_reports_deprecations")}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BaseDeprecations.groovy

            "This is scheduled to be removed in Gradle 9.0. " +
            "Consult the upgrading guide for further information: " +
            DOCUMENTATION_REGISTRY.getDocumentationFor("upgrading_version_8","deprecated_access_to_conventions")
    
        public static final String JAVA_PLUGIN_CONVENTION_DEPRECATION = "The org.gradle.api.plugins.JavaPluginConvention type has been deprecated. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DocumentRegistryExtensions.kt

    
    fun DocumentationRegistry.documentationLinkFor(section: DocumentationSection) =
        configurationCacheLinkFor(section.anchor)
    
    
    fun DocumentationRegistry.configurationCacheLinkFor(anchor: String): String =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 15:36:13 UTC 2024
    - 985 bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/configuration/Help.java

                output.withStyle(UserInput).append(getDocumentationRegistry().getDocumentationFor("build_init_plugin"));
                output.println();
                output.println();
                output.append("For more detail on creating a Gradle build, see ");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AbstractResolutionFailureDescriber.java

        protected String suggestReviewAlgorithm() {
            return DEFAULT_MESSAGE_PREFIX + getDocumentationRegistry().getDocumentationFor("variant_attributes", "sec:abm_algorithm") + ".";
        }
    
        protected String suggestSpecificDocumentation(String prefix, String section) {
            return prefix + getDocumentationRegistry().getDocumentationFor("variant_model", section) + ".";
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DocumentationTest.groovy

        }
    
        def "creates upgrade guide reference"() {
            when:
            def documentationReference = Documentation.upgradeGuide(11, "section")
    
            then:
            def expectedUrl = DOCUMENTATION_REGISTRY.getDocumentationFor("upgrading_version_11", "section")
            documentationReference.getUrl() == expectedUrl
            documentationReference.getConsultDocumentationMessage() == "Consult the upgrading guide for further information: ${expectedUrl}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/Documentation.java

            }
    
            @Override
            public String getUrl() {
                if (section == null) {
                    return DOCUMENTATION_REGISTRY.getDocumentationFor(page);
                }
                if (topic == null) {
                    return DOCUMENTATION_REGISTRY.getDocumentationFor(page, section);
                }
                return DOCUMENTATION_REGISTRY.getDocumentationRecommendationFor(topic, page, section);
            }
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ShadowPluginSmokeTest.groovy

            "This is scheduled to be removed in Gradle 9.0. " +
            "Please use the getPermissions() method instead. " +
            "Consult the upgrading guide for further information: " +
            new DocumentationRegistry().getDocumentationFor("upgrading_version_8","unix_file_permissions_deprecated")
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top