Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Sandal (0.18 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserManual.java

    import org.gradle.api.file.DirectoryProperty;
    
    /**
     * Configuration for user manual documentation
     */
    public abstract class UserManual {
        /**
         * The root of the user manual documentation.  This is the source of the adoc files.
         */
        public abstract DirectoryProperty getRoot();
    
        /**
         * Source of snippets that can be inserted into the user manual
         */
        public abstract DirectoryProperty getSnippets();
    
        /**
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  2. README.md

    * [NetBeans](https://netbeans.apache.org)
    * [Visual Studio Code](https://code.visualstudio.com/docs/languages/java)
    
    ## Need Help?
    
    * Get familiar with the [Gradle User Manual](https://docs.gradle.org/current/userguide/userguide.html)
    * [Upcoming trainings](https://gradle.org/training/)
    * Ask on the [forum](https://discuss.gradle.org/) or [StackOverflow](https://stackoverflow.com/questions/tagged/gradle)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Mar 24 20:49:08 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  3. .github/workflows/notify-on-rc-for-manual-test.yml

    name: IDE Experience team notifier
    run-name: Notify the IDE Experience team about new RCs for manual testing
    on:
      push:
        tags:
          - 'v*.*.*-RC1'
    
    jobs:
      send-slack-notification:
        runs-on: ubuntu-latest
        steps:
          - name: Send Slack notification about new RCs for manual testing
            id: slack
            uses: slackapi/slack-github-action@v1.23.0
            with:
              payload: |
                {
    Others
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Mar 16 08:48:39 GMT 2023
    - 1008 bytes
    - Viewed (0)
  4. build-logic/documentation/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
        id("gradlebuild.build-logic.groovy-dsl-gradle-plugin")
    }
    
    description = "Provides a plugin to generate Gradle's DSL reference, User Manual and Javadocs"
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":build-update-utils"))
    
        implementation("com.github.javaparser:javaparser-core")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

                // Dokka Kotlin DSL reference goes into kotlin-dsl/
                task.from(extension.getKotlinDslReference().getRenderedDocumentation(), sub -> sub.into("kotlin-dsl"));
    
                // User manual goes into userguide/ (for historical reasons)
                task.from(extension.getUserManual().getRenderedDocumentation(), sub -> sub.into("userguide"));
    
                task.into(extension.getDocumentationRenderedRoot());
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 17 20:04:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

            excludedPackages.add("org.gradle.platform.base.test");
            return excludedPackages;
        }
    
        // TODO: This doesn't really make sense to be part of the user manual generation, but it's so tied up into it
        // it's left here for a future project.
        private void generateDefaultImports(Project project, TaskContainer tasks, GradleDocumentationExtension extension) {
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java

         */
        public abstract ConfigurableFileCollection getRenderedDocumentation();
    
        // These are all helper methods for configuring the parts of the documentation (DSL ref, javadoc, user manual, etc).
        public ReleaseNotes getReleaseNotes() {
            return releaseNotes;
        }
    
        public void releaseNotes(Action<? super ReleaseNotes> action) {
            action.execute(releaseNotes);
        }
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Aug 11 08:52:40 GMT 2023
    - 4.4K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDslReferencePlugin.java

    /**
     * Generates DSL reference material using Docbook and some homegrown class parsing.
     *
     * TODO: It would be nice to replace the Docbook portion of this with Asciidoc so that it could be
     * generated in the same way as the user manual with cross-links between them.
     */
    public class GradleDslReferencePlugin implements Plugin<Project> {
        @Override
        public void apply(Project project) {
            ProjectLayout layout = project.getLayout();
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 5.7K bytes
    - Viewed (0)
  9. .idea/inspectionProfiles/Gradle.xml

            <constraint name="transform" within="" contains="" />
          </replaceConfiguration>
    XML
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 11 13:39:08 GMT 2024
    - 13K bytes
    - Viewed (0)
  10. CONTRIBUTING.md

    * Create integration tests that exercise a Gradle build for the bug/feature. 
    * Annotate tests that correspond to a bug on GitHub (`@Issue("https://github.com/gradle/gradle/issues/2622")`).
    * Add documentation to the User Manual and DSL Reference (under [platforms/documentation/docs/src/docs](platforms/documentation/docs/src/docs/)).
    * For new features, the feature should be mentioned in the [Release Notes](platforms/documentation/docs/src/docs/release/notes.md).
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Feb 09 15:30:53 GMT 2024
    - 15.6K bytes
    - Viewed (0)
Back to top