Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for snippets (0.23 sec)

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

         * The stylesheet directory used by the DSL reference documentation.
         */
        public abstract DirectoryProperty getStylesheetDirectory();
    
        /**
         * The stylesheet used by the DSL reference to highlight code snippets.
         */
        public abstract RegularFileProperty getHighlightStylesheet();
    
        /**
         * Resources to include with the generated documentation.
         */
        public abstract ConfigurableFileCollection getResources();
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  2. 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)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserManual.java

    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();
    
        /**
         * Source of samples that can be inserted into the user manual
         *
         */
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/providers/WrapperLifecycleProvider.java

        // START SNIPPET: wrapper
        private static final String[] PHASES = {"wrapper"};
    
        private static final String MAVEN_WRAPPER_PLUGIN_VERSION = "3.2.0";
    
        private static final String[] BINDINGS = {
            "wrapper", "org.apache.maven.plugins:maven-wrapper-plugin:" + MAVEN_WRAPPER_PLUGIN_VERSION + ":wrapper"
        };
        // END SNIPPET: wrapper
    
        @Inject
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jun 12 09:18:02 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/providers/CleanLifecycleProvider.java

        // START SNIPPET: clean
        private static final String[] PHASES = {"pre-clean", "clean", "post-clean"};
    
        private static final String MAVEN_CLEAN_PLUGIN_VERSION = "3.2.0";
    
        private static final String[] BINDINGS = {
            "clean", "org.apache.maven.plugins:maven-clean-plugin:" + MAVEN_CLEAN_PLUGIN_VERSION + ":clean"
        };
        // END SNIPPET: clean
    
        @Inject
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jan 16 13:30:48 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/providers/DefaultLifecycleProvider.java

     */
    @Named(DefaultLifecycleProvider.LIFECYCLE_ID)
    @Singleton
    public final class DefaultLifecycleProvider extends AbstractLifecycleProvider {
        static final String LIFECYCLE_ID = "default";
    
        // START SNIPPET: default
        private static final String[] PHASES = {
            "validate",
            "initialize",
            "generate-sources",
            "process-sources",
            "generate-resources",
            "process-resources",
    Java
    - Registered: Sun Apr 07 03:35:11 GMT 2024
    - Last Modified: Mon Jan 16 13:30:48 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/JarLifecycleMappingProvider.java

    /**
     * {@code jar} packaging plugins bindings provider for {@code default} lifecycle.
     */
    @Named("jar")
    @Singleton
    public final class JarLifecycleMappingProvider extends AbstractLifecycleMappingProvider {
        // START SNIPPET: jar
        @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)
  10. android/guava/src/com/google/common/collect/Multimap.java

     * they return from {@code get} behave like (and, of course, implement) {@link List} and {@link
     * Set}, respectively.
     *
     * <p>For example, the "presidents" code snippet above used a {@code ListMultimap}; if it had used a
     * {@code SetMultimap} instead, two presidents would have vanished, and last names might or might
     * not appear in chronological order.
     *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 15.1K bytes
    - Viewed (0)
Back to top