Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 989 for scouse (0.07 sec)

  1. compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactNotFoundException.java

                    artifact.getDependencyTrail());
        }
    
        protected ArtifactNotFoundException(
                String message, Artifact artifact, List<ArtifactRepository> remoteRepositories, Throwable cause) {
            this(
                    message,
                    artifact.getGroupId(),
                    artifact.getArtifactId(),
                    artifact.getVersion(),
                    artifact.getType(),
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/InvalidRepositoryException.java

         *
         * @param message The detail message, may be {@code null}.
         * @param repository The repository that caused the error, may be {@code null}.
         * @param cause The cause, may be {@code null}.
         */
        public InvalidRepositoryException(String message, Repository repository, Throwable cause) {
            super(message, cause);
            this.repository = repository;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsProblemCollector.java

            if (line <= 0 && column <= 0 && (cause instanceof SettingsParseException)) {
                SettingsParseException e = (SettingsParseException) cause;
                line = e.getLineNumber();
                column = e.getColumnNumber();
            }
    
            SettingsProblem problem = new DefaultSettingsProblem(message, severity, source, line, column, cause);
    
            problems.add(problem);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelTransformerException.java

        public ModelTransformerException(String message) {
            this(message, null);
        }
    
        public ModelTransformerException(Throwable cause) {
            this(null, cause);
        }
    
        public ModelTransformerException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Sep 12 06:15:53 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/test/resources/poms/validation/hard-coded-system-path.xml

          <artifactId>a</artifactId>
          <version>0.2</version>
          <scope>system</scope>
          <systemPath>should-use-variables-and-not-hard-code-this-path</systemPath>
        </dependency>
        <dependency>
          <groupId>test</groupId>
          <artifactId>b</artifactId>
          <version>0.1</version>
          <scope>system</scope>
          <systemPath>${java.home}/lib/good.jar</systemPath>
        </dependency>
      </dependencies>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java

        super(message);
      }
    
      public UncheckedTimeoutException(@CheckForNull Throwable cause) {
        super(cause);
      }
    
      public UncheckedTimeoutException(@CheckForNull String message, @CheckForNull Throwable cause) {
        super(message, cause);
      }
    
      private static final long serialVersionUID = 0;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/FileAccessException.java

            super(messageCode, args, cause);
        }
    
        public FileAccessException(final String messageCode, final Object[] args) {
            super(messageCode, args);
        }
    
        public FileAccessException(final String messageCode, final Throwable cause) {
            super(messageCode, new Object[0], cause);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/NoSuchAlgorithmRuntimeException.java

        /**
         * {@link NoSuchAlgorithmRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public NoSuchAlgorithmRuntimeException(final NoSuchAlgorithmException cause) {
            super("ECL0067", asArray(cause), cause);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java

        /**
         * {@link ParserConfigurationRuntimeException}を作成します。
         *
         * @param cause
         *            原因となった例外
         */
        public ParserConfigurationRuntimeException(final ParserConfigurationException cause) {
            super("ECL0053", asArray(cause), cause);
        }
    
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. compat/maven-repository-metadata/pom.xml

          <artifactId>junit-jupiter-api</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-api</artifactId>
          <scope>test</scope>
        </dependency>
        <dependency>
          <groupId>com.fasterxml.woodstox</groupId>
          <artifactId>woodstox-core</artifactId>
          <scope>test</scope>
        </dependency>
      </dependencies>
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top