Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 792 for documentationId (0.38 sec)

  1. 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)
  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. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/DerivedVariantsResolutionIntegrationTest.groovy

                    "org.gradle.category": "documentation",
                    "org.gradle.dependency.bundling": "external",
                    "org.gradle.docstype": "sources",
                    "org.gradle.usage": "java-runtime"
                ]) {
                    artifact("transitive-1.0-sources.jar")
                }
                .variant("javadoc", [
                    "org.gradle.category": "documentation",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

        Reason: ${errors.join('\n    ')}.
    
        Possible solution: Fix the TOML file according to the syntax described at https://toml.io.
    
        ${documentation}"""
            }
        }
    
        static class NameClash extends InCatalog<NameClash> {
            private List<String> aliases = []
            private String getterName
            private String kind = 'library aliases'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. 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)
  7. docs/fr/docs/tutorial/path-params.md

        On voit bien dans la documentation que `item_id` est déclaré comme entier.
    
    ## Les avantages d'avoir une documentation basée sur une norme, et la documentation alternative.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/documentation/docs/README.md

        ./gradlew serveDocs -PquickDocs
    
    The flag `-PquickDocs` disables some slow documentation tasks, like creating the DSL reference or the single page user manual PDF or HTML.
    This will automatically enter continuous build and rebuild the documentation when you make changes. It takes 30-40 seconds to rebuild the documentation in "quick mode".
    
    If you really want to generate just the user manual, you can run:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/go/doc/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package doc extracts source code documentation from a Go AST.
    package doc
    
    import (
    	"fmt"
    	"go/ast"
    	"go/doc/comment"
    	"go/token"
    	"strings"
    )
    
    // Package is the documentation for an entire package.
    type Package struct {
    	Doc        string
    	Name       string
    	ImportPath string
    	Imports    []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

        }
    
        /**
         * Returns the directory to generate the documentation into.
         *
         * @return The directory to generate the documentation into
         */
        @OutputDirectory
        public File getDestinationDir() {
            return destinationDir;
        }
    
        /**
         * Sets the directory to generate the documentation into.
         */
        public void setDestinationDir(File destinationDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top