Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for start (0.72 sec)

  1. 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";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 15:34:45 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

         *
         * @param value the content to append
         * @param start the starting index of the subsequence to be appended
         * @param end the end index of the subsequence to be appended
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder a(CharSequence value, int start, int end) {
            return append(value, start, end);
        }
    
        /**
         * Append content to the message buffer.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultMessageBuilder.java

        @Override
        public MessageBuilder append(CharSequence cs) {
            buffer.append(cs);
            return this;
        }
    
        @Override
        public MessageBuilder append(CharSequence cs, int start, int end) {
            buffer.append(cs, start, end);
            return this;
        }
    
        @Override
        public MessageBuilder append(char c) {
            buffer.append(c);
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/CleanArgument.java

                    // if we're in the process of building up another arg, push it and start over.
                    // this is for the case: "-Dfoo=bar "-Dfoo2=bar two" (note the first unterminated quote)
                    if (currentArg != null) {
                        cleaned.add(currentArg.toString());
                    }
    
                    // start building an argument here.
                    currentArg = new StringBuilder(arg.substring(1));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 12:51:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

            this.blockOnLastEvent = blockOnLastEvent;
    
            this.eventQueue = new ArrayBlockingQueue<>(queueSize);
            Thread updater = new Thread(this::feedConsumer);
            updater.setDaemon(true);
            updater.start();
        }
    
        public TransferListener getDelegate() {
            return delegate;
        }
    
        private void feedConsumer() {
            final ArrayList<Exchange> batch = new ArrayList<>(batchMaxSize);
            try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the start time of the build.
         *
         * @return The start time of the build or {@code null} if unknown.
         */
        Date getBuildStartTime();
    
        /**
         * Sets the start time of the build.
         *
         * @param buildStartTime The start time of the build, may be {@code null}.
         * @return This request, never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/BomLifecycleMappingProvider.java

    /**
     * {@code bom} packaging plugins bindings provider for {@code default} lifecycle.
     */
    @Named("bom")
    @Singleton
    public final class BomLifecycleMappingProvider extends AbstractLifecycleMappingProvider {
        // START SNIPPET: bom
        @SuppressWarnings("checkstyle:linelength")
        private static final String[] BINDINGS = {
            "install", "org.apache.maven.plugins:maven-install-plugin:" + INSTALL_PLUGIN_VERSION + ":install",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 10:53:44 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/internal/DefaultLegacySupportTest.java

            defaultLegacySupport.setSession(m1);
    
            MyRunnable myRunnable = new MyRunnable();
            Thread thread = new Thread(myRunnable);
            thread.start();
    
            MavenSession m2 = new MavenSession(null, null, mavenExecutionRequest, null);
            defaultLegacySupport.setSession(m2);
            latch.countDown();
            thread.join();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/PomLifecycleMappingProvider.java

    /**
     * {@code pom} packaging plugins bindings provider for {@code default} lifecycle.
     */
    @Named("pom")
    @Singleton
    public final class PomLifecycleMappingProvider extends AbstractLifecycleMappingProvider {
        // START SNIPPET: pom
        @SuppressWarnings("checkstyle:linelength")
        private static final String[] BINDINGS = {
            "install", "org.apache.maven.plugins:maven-install-plugin:" + INSTALL_PLUGIN_VERSION + ":install",
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

                builder.append(cs);
                return this;
            }
    
            @Override
            public MessageBuilder append(CharSequence cs, int start, int end) {
                builder.append(cs, start, end);
                return this;
            }
    
            @Override
            public MessageBuilder append(char c) {
                builder.append(c);
                return this;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top