Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,470 for documentationId (0.26 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-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

            hasIntro = false
            this
        }
    
        T documentationSection(String documentationSection) {
            section = documentationSection
            this
        }
    
        T documentationId(String id) {
            documentationId = id
            this
        }
    
        String getPropertyIntro() {
            "property"
        }
    
        private String getIntro() {
            if (!hasIntro) {
                return ''
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. .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)
  7. src/cmd/go/internal/doc/doc.go

    different cases. If this occurs, documentation for all matches is printed.
    
    Examples:
    	go doc
    		Show documentation for current package.
    	go doc Foo
    		Show documentation for Foo in the current package.
    		(Foo starts with a capital letter so it cannot match
    		a package path.)
    	go doc encoding/json
    		Show documentation for the encoding/json package.
    	go doc json
    		Shorthand for encoding/json.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

        /**
         * A working directory to be used to stage documentation as its generated.
         * All of the sections of the documentation have working directories off of this one.
         */
        public abstract DirectoryProperty getStagingRoot();
    
        /**
         * The final location to place all rendered documentation.
         */
        public abstract DirectoryProperty getDocumentationRenderedRoot();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 11 08:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DocumentedFailure.java

                this.advice = advice;
                return this;
            }
    
            @Override
            @CheckReturnValue
            public Builder withDocumentation(DocLink documentation) {
                this.documentation = documentation;
                return this;
            }
    
            @CheckReturnValue
            public GradleException build() {
                return build(null);
            }
    
            @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top