Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for Hong (1.39 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java

         */
        private final long time;
    
        /**
         * Creates a new build summary for the specified project.
         *
         * @param project The project being summarized, must not be {@code null}.
         * @param time The build time of the project in milliseconds.
         */
        protected BuildSummary(MavenProject project, long time) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/TransferListenerAdapter.java

        }
    
        public void transferProgress(TransferEvent transferEvent, byte[] buffer, int length) {
            Long transferred;
            synchronized (transfers) {
                transferred = transfers.get(transferEvent.getResource());
                if (transferred == null) {
                    transferred = (long) length;
                } else {
                    transferred = transferred + length;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java

            Iterator<TransferResourceAndSize> entries = transfers.values().iterator();
            while (entries.hasNext()) {
                TransferResourceAndSize entry = entries.next();
                long total = entry.resource.getContentLength();
                Long complete = entry.transferredBytes;
    
                String resourceName = entry.resource.getResourceName();
    
                if (printResourceNames) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferResource.java

         *
         * @return The of the artifact in bytes or a negative value if unknown.
         */
        long getContentLength();
    
        /**
         * Gets the timestamp when the transfer of this artifact was started.
         *
         * @return The timestamp when the transfer of this artifact was started.
         */
        long getTransferStartTime();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java

            // for performance, check digits instead of relying later on catching NumberFormatException
            if (!isDigits(s)) {
                return null;
            }
    
            try {
                long longValue = Long.parseLong(s);
                if (longValue > Integer.MAX_VALUE) {
                    return null;
                }
                return (int) longValue;
            } catch (NumberFormatException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:50:51 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

            }
        }
    
        /**
         * Represents a numeric item in the version item list that can be represented with a long.
         */
        private static class LongItem implements Item {
            private final long value;
    
            LongItem(String str) {
                this.value = Long.parseLong(str);
            }
    
            @Override
            public int getType() {
                return LONG_ITEM;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphTransformationException.java

     * under the License.
     */
    package org.apache.maven.repository.metadata;
    
    /**
     */
    @Deprecated
    public class MetadataGraphTransformationException extends Exception {
    
        private static final long serialVersionUID = -4029897098314019152L;
    
        public MetadataGraphTransformationException() {}
    
        public MetadataGraphTransformationException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerException.java

    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * @since 4.0.0
     */
    @Experimental
    public class ArtifactInstallerException extends MavenException {
    
        /**
         *
         */
        private static final long serialVersionUID = 3652561971360586373L;
    
        /**
         * @param message the message of the error
         * @param e {@link Exception}
         */
        public ArtifactInstallerException(String message, Exception e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java

         *
         * @param project The project being summarized, must not be {@code null}.
         * @param time The build time of the project in milliseconds.
         */
        public BuildSuccess(MavenProject project, long time) {
            super(project, time);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. 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) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top