Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,930 for documentationId (0.57 sec)

  1. 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)
  2. 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)
  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. .github/ISSUE_TEMPLATE/40_contributor_documentation.yml

    name: Documentation
    description: Report a problem with our documentation
    labels: [ "a:documentation", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please search related information in our [latest documentation](https://docs.gradle.org/current/userguide/userguide.html) before opening a documentation issue.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 10:01:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/build.gradle

    // tag::build-script[]
    import sample.documentation.DocumentationComponent
    import sample.documentation.TextSourceSet
    import sample.markdown.MarkdownSourceSet
    
    apply plugin: sample.documentation.DocumentationPlugin
    apply plugin: sample.markdown.MarkdownPlugin
    
    model {
        components {
            docs(DocumentationComponent) {
                sources {
                    reference(TextSourceSet)
                    userguide(MarkdownSourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 586 bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/attributes/DocsType.java

     */
    
    package org.gradle.api.attributes;
    
    import org.gradle.api.Named;
    
    /**
     * Attributes to qualify the type of documentation.
     * <p>
     * This attribute is usually found on variants that have the {@link Category} attribute valued at {@link Category#DOCUMENTATION documentation}.
     *
     * @since 5.6
     */
    public interface DocsType extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 23 18:49:28 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/kotlin/build.gradle.kts

        description = "Generates the HTML documentation for this project."
        title = "Project docs"
        outputDir = layout.buildDirectory.dir("docs")
    }
    
    tasks.register("allDocs") {
        group = JavaBasePlugin.DOCUMENTATION_GROUP
        description = "Generates all documentation for this project."
        dependsOn("generateHtmlDocs")
    
        doLast {
            logger.quiet("Generating all documentation...")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/groovy/build.gradle

        description = 'Generates the HTML documentation for this project.'
        title = 'Project docs'
        outputDir = layout.buildDirectory.dir('docs')
    }
    
    tasks.register('allDocs') {
        group = JavaBasePlugin.DOCUMENTATION_GROUP
        description = 'Generates all documentation for this project.'
        dependsOn generateHtmlDocs
    
        doLast {
            logger.quiet('Generating all documentation...')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 558 bytes
    - Viewed (0)
Back to top