Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for Hong (0.12 sec)

  1. maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumentationException.java

     * under the License.
     */
    package org.apache.maven.usability.plugin;
    
    /**
     * ExpressionDocumentationException
     */
    @Deprecated
    public class ExpressionDocumentationException extends Exception {
        static final long serialVersionUID = 1;
    
        public ExpressionDocumentationException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public ExpressionDocumentationException(String message) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerException.java

    /**
     * An artifact could not correctly being deployed.
     *
     * @since 4.0.0
     */
    @Experimental
    public class ArtifactDeployerException extends MavenException {
    
        /**
         *
         */
        private static final long serialVersionUID = 7421964724059077698L;
    
        /**
         * @param message the message of the error
         * @param e {@link Exception}
         */
        public ArtifactDeployerException(String message, Exception e) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java

    import org.apache.maven.wagon.TransferFailedException;
    
    /**
     * WagonConfigurationException
     */
    @Deprecated
    public class WagonConfigurationException extends TransferFailedException {
    
        static final long serialVersionUID = 1;
    
        private final String originalMessage;
        private final String repositoryId;
    
        public WagonConfigurationException(String repositoryId, String message, Throwable cause) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/CompletionServiceStub.java

        public Future<ProjectSegment> take() throws InterruptedException {
            return null;
        }
    
        public Future<ProjectSegment> poll() {
            return null;
        }
    
        public Future<ProjectSegment> poll(long timeout, TimeUnit unit) throws InterruptedException {
            return null;
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java

         */
        public void setLocalFile(File localFile) {
            this.localFile = localFile;
        }
    
        public long getTransferredBytes() {
            return transferredBytes;
        }
    
        public void setTransferredBytes(long transferredBytes) {
            this.transferredBytes = transferredBytes;
        }
    
        public byte[] getDataBuffer() {
            return dataBuffer;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCollectorException.java

     *
     * @since 4.0.0
     */
    @Experimental
    public class DependencyCollectorException extends MavenException {
        /**
         *
         */
        private static final long serialVersionUID = -3134726259840210686L;
    
        /**
         * @param message the message you would give for the exception
         * @param cause the cause which is related to the message
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/ConflictResolverNotFoundException.java

     */
    @Deprecated
    public class ConflictResolverNotFoundException extends Exception {
        // constants --------------------------------------------------------------
    
        /** The serial version ID. */
        private static final long serialVersionUID = 3372412184339653914L;
    
        // constructors -----------------------------------------------------------
    
        /**
         * Creates a new <code>ConflictResolverNotFoundException</code> with the specified message.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/DefaultExtensionRealmCache.java

                    File file = artifact.getFile();
                    files.add(file);
                    timestamps.add((file != null) ? Long.valueOf(file.lastModified()) : Long.valueOf(0));
                    sizes.add((file != null) ? Long.valueOf(file.length()) : Long.valueOf(0));
                    ids.add(artifact.getVersion());
                }
    
                this.hashCode =
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 4.7K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/legacy/MavenArtifact.java

            }
    
            return name;
        }
    
        public String getUrl() {
            return getRepositoryUrl() + getName();
        }
    
        public long getContentLength() {
            return resource.getContentLength();
        }
    
        public long getTransferStartTime() {
            return transferStartTime;
        }
    
        @Override
        public String toString() {
            return getUrl();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmServiceException.java

     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.annotations.Experimental;
    
    @Experimental
    public class ChecksumAlgorithmServiceException extends MavenException {
    
        private static final long serialVersionUID = 1201171469179367694L;
    
        public ChecksumAlgorithmServiceException(String message, Throwable cause) {
            super(message, cause);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Dec 21 08:05:10 GMT 2023
    - 1.2K bytes
    - Viewed (0)
Back to top