Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for snippets (0.21 sec)

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

                });
    
                // From the snippets and the samples, filter out files generated if the build contained was ever executed
                task.from(extension.getUserManual().getSnippets(), sub -> {
                    sub.into("snippets");
                    sub.exclude("**/.gradle/**");
                    sub.exclude("**/build/**");
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  2. .cm/misc_labels.cm

      tests: {{ files | allTests }}
    
      # Exclude anything under samples/snippets sourceSets, or any sort of test resource file
      build_script_change: {{ files | reject(regex=r/.*\/src\/(samples|snippets)\//) | reject(regex=r/.*\/(crossVersionTest|docsTest|functionalTest|integTest|smokeTest|test|testFixtures)\/resources\//) | match(list=build_logic_files) | some }}
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3K bytes
    - Viewed (0)
  3. .gitignore

    # Gradle
    # ------
    .gradle
    /build
    /*/build
    /*/*/build
    /*/*/*/build
    /*/*/*/*/build
    /*/docs/src/samples/**/build
    /*/docs/src/snippets/**/build
    /*/internal-android-performance-testing/build-android-libs
    test-splits/
    /gradle/verification-keyring.gpg
    
    # IDEA
    # ----
    !/.idea
    /.idea/*
    !/.idea/codeStyles
    !/.idea/inspectionProfiles
    !/.idea/icon.png
    !/.idea/icon_dark.png
    */**/.idea
    */**/.shelf
    .shelf
    /*.iml
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Apr 03 21:04:56 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.distribution-testing.gradle.kts

            // The actual daemon registry dir will be a subfolder using the name of the distribution.
            daemonRegistry = repoRoot().dir("build/daemon")
            gradleSnippetsDir = repoRoot().dir("platforms/documentation/docs/src/snippets") // TODO use dependency management
        }
    
        // Wire the different inputs for local distributions and repos that are declared by dependencies in the build scripts
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Tue Nov 28 20:40:40 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  5. .cm/summary_table.cm

          - 'platforms/core-configuration/kotlin-dsl-tooling-builders/'
          - 'platforms/core-configuration/kotlin-dsl-tooling-models/'
          - 'build-logic/kotlin-dsl/'
          - 'platforms/documentation/docs/src/snippets/kotlinDsl/'
      - release_coordination:
        name: 'release_coordination'
        subprojects:
          - 'subprojects/core-platform/'
          - 'subprojects/distributions-dependencies/'
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Feb 08 15:20:44 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  6. .github/CODEOWNERS

    platforms/documentation/samples/                                                       	      @gradle/bt-devrel-education
    
    platforms/documentation/docs/src/snippets/kotlinDsl/                                                @gradle/bt-devrel-education @gradle/bt-kotlin-dsl-maintainers
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 15:52:09 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/InternetDomainName.java

       * Specifically, validation against <a href="http://www.ietf.org/rfc/rfc3490.txt">RFC 3490</a>
       * ("Internationalizing Domain Names in Applications") is skipped.
       *
       * <p>The following two code snippets are equivalent:
       *
       * <pre>{@code
       * domainName = InternetDomainName.isValid(name)
       *     ? InternetDomainName.from(name)
       *     : DEFAULT_DOMAIN;
       * }</pre>
       *
       * <pre>{@code
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/PomLifecycleMappingProvider.java

        // START SNIPPET: pom
        @SuppressWarnings("checkstyle:linelength")
        private static final String[] BINDINGS = {
            "install", "org.apache.maven.plugins:maven-install-plugin:" + INSTALL_PLUGIN_VERSION + ":install",
            "deploy", "org.apache.maven.plugins:maven-deploy-plugin:" + DEPLOY_PLUGIN_VERSION + ":deploy"
        };
        // END SNIPPET: pom
    
        @Inject
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/site/apt/default-bindings.apt.vm

    %{snippet|id=jar|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/packaging/JarLifecycleMappingProvider.java}
    
    * Plugin bindings for <<<ejb>>> packaging
    
    %{snippet|id=ejb|file=${project.basedir}/src/main/java/org/apache/maven/lifecycle/providers/packaging/EjbLifecycleMappingProvider.java}
    
    * Plugin bindings for <<<maven-plugin>>> packaging
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Mar 08 17:45:23 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/WarLifecycleMappingProvider.java

    /**
     * {@code war} packaging plugins bindings provider for {@code default} lifecycle.
     */
    @Named("war")
    @Singleton
    public final class WarLifecycleMappingProvider extends AbstractLifecycleMappingProvider {
        // START SNIPPET: war
        @SuppressWarnings("checkstyle:linelength")
        private static final String[] BINDINGS = {
            "process-resources",
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.3K bytes
    - Viewed (0)
Back to top