Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 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. 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)
  4. .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)
  5. .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)
  6. 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)
  7. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.0.0.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <!-- START SNIPPET: superpom -->
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/resources/org/apache/maven/model/pom-4.1.0.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <!-- START SNIPPET: superpom -->
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/AbstractLifecycleMappingProvider.java

    /**
     * Base lifecycle mapping provider, ie per-packaging plugin bindings for {@code default} lifecycle.
     */
    public abstract class AbstractLifecycleMappingProvider implements Provider<LifecycleMapping> {
        // START SNIPPET: versions
        protected static final String RESOURCES_PLUGIN_VERSION = "3.3.1";
    
        protected static final String COMPILER_PLUGIN_VERSION = "3.13.0";
    
        protected static final String SUREFIRE_PLUGIN_VERSION = "3.2.5";
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 15:34:45 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  10. scripts/docs.py

    import mkdocs.utils
    import typer
    import yaml
    from jinja2 import Template
    
    logging.basicConfig(level=logging.INFO)
    
    app = typer.Typer()
    
    mkdocs_name = "mkdocs.yml"
    
    missing_translation_snippet = """
    {!../../../docs/missing-translation.md!}
    """
    
    docs_path = Path("docs")
    en_docs_path = Path("docs/en")
    en_config_path: Path = en_docs_path / mkdocs_name
    site_path = Path("site").absolute()
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Jan 22 19:26:14 GMT 2024
    - 10.9K bytes
    - Viewed (1)
Back to top