Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 622 for documentationId (0.21 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/Documentation.java

            public T withUserManual(String documentationId) {
                return withDocumentation(Documentation.userManual(documentationId));
            }
    
            /**
             * Output: See USER_MANUAL_URL for more details.
             */
            @CheckReturnValue
            public T withUserManual(String documentationId, String section) {
                return withDocumentation(Documentation.userManual(documentationId, 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)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DocumentationTest.groovy

        def "formats message for documentation id #documentationId, section #documentationSection"() {
            given:
            def documentationReference = Documentation.userManual(documentationId, documentationSection)
    
            expect:
            documentationReference.getConsultDocumentationMessage() == expectedUrl
    
            where:
            documentationId | documentationSection | 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)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            display(SimpleMessage, 'dummy') {
                type(onType).property(onProperty)
                description(desc)
                reason(testReason)
                includeLink()
                documentationId("id")
                documentationSection("section")
            }.render()
        }
    
        String dummyValidationProblem(@DelegatesTo(value = SimpleMessage, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. docs/fr/docs/tutorial/body.md

    ## Documentation automatique
    
    Les schémas JSON de vos modèles seront intégrés au schéma OpenAPI global de votre application, et seront donc affichés dans la documentation interactive de l'API :
    
    <img src="/img/tutorial/body/image01.png">
    
    Et seront aussi utilisés dans chaque *opération de chemin* de la documentation utilisant ces modèles :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. .github/CODEOWNERS

    platforms/ide/ide-native/         @gradle/bt-ide-experience @gradle/bt-native-maintainers
    
    # Documentation
    platforms/documentation/docs/src/docs/                                                        @gradle/bt-devrel-education
    platforms/documentation/docs/src/samples/                                                     @gradle/bt-devrel-education
    platforms/documentation/docs/src/docs-asciidoctor-extensions-base/                            @gradle/bt-devrel-education
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/internal/DefaultProblemDefinitionReport.groovy

            then:
            pd1 != pd2
        }
    
        def static asdfManual = Documentation.userManual("asdf")
    
    
        ProblemDefinition createProblemDefinition(
            String label = "label",
            Severity severity = Severity.ERROR,
            Documentation documentation = asdfManual,
            List<String> solutions = ImmutableList.of(),
            String displayName = "display name"
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecatedFeatureUsage.java

        private final DocLink documentation;
        private final String problemIdDisplayName;
        private final String problemId;
    
        private final Type type;
    
        public DeprecatedFeatureUsage(
            String summary,
            String removalDetails,
            @Nullable String advice,
            @Nullable String contextualAdvice,
            @Nullable DocLink documentation,
            Type type,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessage.java

            this.context = context;
            this.documentation = documentation;
            this.usageType = usageType;
            this.problemIdDisplayName = problemIdDisplayName;
            this.problemId = problemId;
        }
    
        DeprecatedFeatureUsage toDeprecatedFeatureUsage(Class<?> calledFrom) {
            return new DeprecatedFeatureUsage(summary, removalDetails, advice, context, documentation, usageType, problemIdDisplayName, problemId, calledFrom);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 15:25:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DocLink.java

    /**
     * A link to a documentation page.
     * <p>
     * Subtypes can represent different parts of the gradle documentation, e.g. the DSL reference, the user guide, etc.
     */
    public interface DocLink extends Serializable {
    
        /**
         * The URL to the documentation page.
         */
        String getUrl();
    
        /**
         * A message that tells the user to consult the documentation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/PalantirConsistentVersionsPluginSmokeTest.groovy

                .expectDeprecationWarning("The compileClasspathCopy configuration has been deprecated for consumption. This will fail with an error in Gradle 9.0. For more information, please refer to https://docs.gradle.org/${GradleVersion.current().version}/userguide/declaring_dependencies.html#sec:deprecated-configurations in the Gradle documentation.", issueUrl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top