Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,930 for documentationId (0.38 sec)

  1. platforms/documentation/docs/src/samples/readme-templates/library-api-docs.adoc.template

    == Adding API documentation
    
    The `java-library` plugin has built-in support for Java's API documentation tool via the `javadoc` task.
    
    The code generated by the Build Init plugin already placed a comment on the `${sourceFile.raw}` file.
    Replace `/*` in the comment by `/**` so that it becomes `javadoc` markup:
    
    .src/main/${languageLC.raw}/${sourceFile.raw}
    [source,java]
    ----
    /**
     * This java source file was generated by the Gradle 'init' task.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. docs/en/docs/benchmarks.md

        * FastAPI provides more features on top of Starlette. Features that you almost always need when building APIs, like data validation and serialization. And by using it, you get automatic documentation for free (the automatic documentation doesn't even add overhead to running applications, it is generated on startup).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmEcosystemAttributesDetails.java

        /**
         * Provides or requires a platform
         */
        JvmEcosystemAttributesDetails platform();
    
        /**
         * Provides or requires documentation
         * @param docsType the documentation type (javadoc, sources, ...)
         */
        JvmEcosystemAttributesDetails documentation(String docsType);
    
        /**
         * Provides or requires an API
         */
        JvmEcosystemAttributesDetails apiUsage();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ForceRealizedMetadataIntegrationTest.groovy

                        withVariantReselection()
                        attributes {
                            attribute(Category.CATEGORY_ATTRIBUTE, objects.named(Category, Category.DOCUMENTATION))
                            attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling, Bundling.EXTERNAL))
                            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, DocsType.SOURCES))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/NoUsableDaemonFoundException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.client;
    
    import org.gradle.internal.deprecation.Documentation;
    import org.gradle.internal.exceptions.DefaultMultiCauseException;
    import org.gradle.internal.exceptions.ResolutionProvider;
    
    import java.util.Collections;
    import java.util.List;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-versions.gradle.kts

        minimumSupportedMinor = "7.3"
        propertiesFile = layout.projectDirectory.file("gradle/dependency-management/agp-versions.properties")
        compatibilityDocFile = layout.projectDirectory.file("platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc")
    }
    
    tasks.register<UpdateKotlinVersions>("updateKotlinVersions") {
        comment = " Generated - Update by running `./gradlew updateKotlinVersions`"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:17:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotes.java

    public abstract class ReleaseNotes {
        /**
         * The source markdown file for the release notes.
         */
        public abstract RegularFileProperty getMarkdownFile();
    
        /**
         * The base CSS file used by all documentation.
         */
        public abstract RegularFileProperty getBaseCssFile();
    
        /**
         * The release notes specific CSS file
         */
        public abstract RegularFileProperty getReleaseNotesCssFile();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. docs/en/docs/contributing.md

    And those Python files are included/injected in the documentation when generating the site.
    
    ### Docs for tests
    
    Most of the tests actually run against the example source files in the documentation.
    
    This helps to make sure that:
    
    * The documentation is up-to-date.
    * The documentation examples can be run as is.
    * Most of the features are covered by the documentation, ensured by test coverage.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (1)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/Javadoc.java

    import java.util.List;
    
    import static org.gradle.util.internal.GUtil.isTrue;
    
    /**
     * <p>Generates HTML API documentation for Java classes.</p>
     * <p>
     * If you create your own Javadoc tasks remember to specify the 'source' property!
     * Without source the Javadoc task will not create any documentation. Example:
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
     * }
     *
     * task myJavadocs(type: Javadoc) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AdditionalVariantsMetadataRulesIntegrationTest.groovy

                    }
    
                    @Override
                    public void execute(ComponentMetadataContext componentMetadataContext) {
                        Category category = objectFactory.named(Category.class, Category.DOCUMENTATION);
                        DocsType docsType = objectFactory.named(DocsType.class, "my-classifier");
    
                        ModuleVersionIdentifier id = componentMetadataContext.getDetails().getId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 16:23:01 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top