Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for stack (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

        public void enter() {
            LinkedList<ScopeState> stack = values.get();
            if (stack == null) {
                stack = new LinkedList<>();
                values.set(stack);
            }
            stack.addFirst(new ScopeState());
        }
    
        private ScopeState getScopeState() {
            LinkedList<ScopeState> stack = values.get();
            if (stack == null || stack.isEmpty()) {
                throw new IllegalStateException();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java

         * @param error the error that caused this log
         */
        void debug(CharSequence content, Throwable error);
    
        /**
         * Sends an exception to the user in the <b>debug</b> error level.
         * The stack trace for this exception will be output when this error level is enabled.
         *
         * @param error the error that caused this log
         */
        void debug(Throwable error);
    
        void debug(Supplier<String> content);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

            } else {
                logger.warn("The metadata {} {}{}", metadata, errorType, msg);
            }
        }
    
        @Override
        public void artifactDescriptorInvalid(RepositoryEvent event) {
            // The exception stack trace is not really interesting here
            logger.warn(
                    "The POM for {} is invalid, transitive dependencies (if any) will not be available: {}",
                    event.getArtifact(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 19:10:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

     *
     * This is because the ModelProcessor interface extends ModelLocator and ModelReader. If we
     * made this component available under all its interfaces then it could end up being injected
     * into itself leading to a stack overflow.
     *
     * A side effect of using @Typed is that it translates to explicit bindings in the container.
     * So instead of binding the component under a 'wildcard' key it is now bound with an explicit
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java

     *
     * This is because the ModelProcessor interface extends ModelLocator and ModelReader. If we
     * made this component available under all its interfaces then it could end up being injected
     * into itself leading to a stack overflow.
     *
     * A side effect of using @Typed is that it translates to explicit bindings in the container.
     * So instead of binding the component under a 'wildcard' key it is now bound with an explicit
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/offline-mode.apt

      it is definitely useful to define what the offline state really means.
    
      [[1]] This is obvious, but the network/internet is unavailable.
    
      [[2]] Localhost (127.0.0.1) may also be unavailable if the whole
            network stack is offline.
    
      [[3]] "Remote" repositories referenced using the file:// protocol may
            be available. However, if that file:// url references a
            file-share, as in the case of an NFS or SMB mount, that will
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                return execute(cliRequest);
            } catch (ExitException e) {
                return e.exitCode;
            } catch (UnrecognizedOptionException e) {
                // pure user error, suppress stack trace
                return 1;
            } catch (BuildAbort e) {
                CLIReportingUtils.showError(slf4jLogger, "ABORTED", e, cliRequest.showErrors);
    
                return 2;
            } catch (Exception e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    org/codehaus/plexus/util/xml/SerializerXMLWriter.class package org.codehaus.plexus.util.xml; public synchronized class SerializerXMLWriter implements XMLWriter { private final pull.XmlSerializer serializer; private final String namespace; private final java.util.Stack elements; private java.util.List exceptions; public void SerializerXMLWriter(String, pull.XmlSerializer); public void startElement(String); public void addAttribute(String, String); public void writeText(String); public void writeMarkup(String); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  9. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

        if match is found, the toolchain instance is made available to other Maven plugins.</p>
        <p>With {@code jdk} toolchain, for example, instead of being stuck with the JDK used to run Maven, all plugins can use
        the same other JDK instance without hardcoding absolute paths into the {@code pom.xml}
        and without configuring every plugin that require path to JDK tools.</p>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top