Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 211 for documentationId (0.37 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. .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)
  3. 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)
  4. CONTRIBUTING.md

    You can consult the [Architecture documentation](architecture) to learn about some of the architecture of Gradle.
    
    ### Contributing to documentation
    
    This repository includes Gradle documentation sources,
    including but not limited to: User Manual, DSL Reference and Javadoc.
    This information is used to generate documentation for each Gradle version
    on [docs.gradle.org](https://docs.gradle.org/).
    The documentation is mostly implemented in Asciidoc
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationMessageBuilder.java

        }
    
        void setDeprecationTimeline(DeprecationTimeline deprecationTimeline) {
            this.deprecationTimeline = deprecationTimeline;
        }
    
        void setDocumentation(DocLink documentation) {
            this.documentation = documentation;
        }
    
        void setProblemIdDisplayName(String problemIdDisplayName) {
            this.problemIdDisplayName = problemIdDisplayName;
        }
    
        DeprecationMessage build() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/internal/DefaultProblemTest.groovy

    package org.gradle.api.problems.internal
    
    import com.google.common.collect.HashMultimap
    import org.gradle.api.problems.Severity
    import org.gradle.api.problems.SharedProblemGroup
    import org.gradle.internal.deprecation.Documentation
    import org.gradle.internal.operations.OperationIdentifier
    import spock.lang.Specification
    
    class DefaultProblemTest extends Specification {
        def "unbound builder result is equal to original"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheException.kt

    ) : DefaultMultiCauseException(message, causes), ConfigurationCacheThrowable
    
    
    open class ConfigurationCacheProblemsException : ConfigurationCacheException {
    
        protected
        object Documentation {
    
            val maxProblems: String
                get() = DocumentationRegistry().getDocumentationRecommendationFor("on this", "configuration_cache", "config_cache:usage:max_problems")
        }
    
        protected
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/ProblemFactory.kt

         *
         * Problem has no documentation, and a default location is inferred from the calling thread's state.
         */
        fun problem(message: StructuredMessage, exception: Throwable? = null, documentationSection: DocumentationSection? = null): PropertyProblem
    
        /**
         * Creates a problem with the given message.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/path-operation-advanced-configuration.md

        Even if they are in different modules (Python files).
    
    ## Exclude from OpenAPI
    
    To exclude a *path operation* from the generated OpenAPI schema (and thus, from the automatic documentation systems), use the parameter `include_in_schema` and set it to `False`:
    
    ```Python hl_lines="6"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial003.py!}
    ```
    
    ## Advanced description from docstring
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. releasenotes/notes/51239.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: documentation
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 134 bytes
    - Viewed (0)
Back to top