Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 345 for Inception (0.31 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    ent.repository.exception; public synchronized class ComponentDescriptorU extends Exception { private static final long serialVersionUID = 6991583130117543536; public void ComponentDescriptorU(String); public void ComponentDescriptorU(String, Throwable); } org/codehaus/plexus/component/repository/exception/ComponentImplementat.class package org.codehaus.plexus.component.repository.exception; public synchronized class ComponentImplementat extends Exception { private static final long serialVersionUID...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 32.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java

     * </li>
     * <li>child exception summaries.</li>
     * </ul>
     */
    public class ExceptionSummary {
    
        private Throwable exception;
    
        private String message;
    
        private String reference;
    
        private List<ExceptionSummary> children;
    
        public ExceptionSummary(Throwable exception, String message, String reference) {
            this(exception, message, reference, null);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                RepositorySystemSession session, RequestTrace trace, Artifact artifact, Exception exception) {
            RepositoryEvent.Builder event = new RepositoryEvent.Builder(session, EventType.ARTIFACT_DESCRIPTOR_MISSING);
            event.setTrace(trace);
            event.setArtifact(artifact);
            event.setException(exception);
    
            repositoryEventDispatcher.dispatch(event.build());
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 13.9K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExceptionTest.java

            Parameter parameter = new Parameter();
            parameter.setType("java.lang.String[]");
            parameter.setName("toAddresses");
    
            parameter.setRequired(true);
    
            PluginParameterException exception =
                    new PluginParameterException(mojoDescriptor, Collections.singletonList(parameter));
    
            assertEquals(
                    "One or more required plugin parameters are invalid/missing for 'goalPrefix:goal'" + LS
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 6.7K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java

    import java.util.List;
    
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * The Exception class throw by the {@link ProjectBuilder} service.
     *
     * @since 4.0.0
     */
    @Experimental
    public class ModelBuilderException extends MavenException {
    
        private final ModelBuilderResult result;
    
        /**
         * Creates a new exception from the specified interim result and its associated problems.
         *
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlWriterException.java

    import org.apache.maven.api.services.MavenException;
    
    /**
     * An exception thrown during the writing of an xml file.
     *
     * @since 4.0.0
     */
    @Experimental
    public class XmlWriterException extends MavenException {
    
        private final Location location;
    
        /**
         * @param message the message for the exception
         * @param e the exception itself
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

        }
    
        @Test
        void testLifecyclePluginsRetrievalForDefaultLifecycle() throws Exception {
            List<Plugin> plugins = new ArrayList<>(lifecycleExecutor.getPluginsBoundByDefaultToAllLifecycles("jar"));
    
            assertThat(plugins.toString(), plugins, hasSize(9));
        }
    
        @Test
        void testPluginConfigurationCreation() throws Exception {
            File pom = getProject("project-with-additional-lifecycle-elements");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    testSuiteStarted(org.junit.runner.Description) throws Exception; public void testSuiteFinished(org.junit.runner.Description) throws Exception; public void testStarted(org.junit.runner.Description) throws Exception; public void testFinished(org.junit.runner.Description) throws Exception; public void testFailure(Failure) throws Exception; public void testAssumptionFailur(Failure); public void testIgnored(org.junit.runner.Description) throws Exception; public int hashCode(); public boolean equals(Object);...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java

     */
    @Deprecated
    public class MetadataResolutionResult {
        private Artifact originatingArtifact;
    
        private List<Artifact> missingArtifacts;
    
        // Exceptions
    
        private List<Exception> exceptions;
    
        private List<Exception> versionRangeViolations;
    
        private List<ArtifactResolutionException> metadataResolutionExceptions;
    
        private List<CyclicDependencyException> circularDependencyExceptions;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionResult.java

        DependencyResolutionResult getDependencyResolutionResult();
    
        // for each exception
        // - knowing what artifacts are missing
        // - project building exception
        // - invalid project model exception: list of markers
        // - xmlpull parser exception
        List<Throwable> getExceptions();
    
        MavenExecutionResult addException(Throwable e);
    
        boolean hasExceptions();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.9K bytes
    - Viewed (0)
Back to top