Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 973 for documentationId (0.27 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. cmd/kubeadm/app/cmd/util/documentation.go

    Rostislav M. Georgiev <******@****.***> 1561129958 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 24 11:40:55 UTC 2019
    - 4.4K 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. 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)
  7. 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)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/DslReference.java

    /**
     * The DSL reference for this documentation.  These are higher-level than Javadoc.
     */
    public abstract class DslReference {
        /**
         * The root of the DSL documentation.  This is the source of the DSL XML currently.
         */
        public abstract DirectoryProperty getRoot();
    
        /**
         * The stylesheet directory used by the DSL reference documentation.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.9K 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