Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Nash (0.13 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                    && Objects.equals(restrictions, other.restrictions);
        }
    
        public int hashCode() {
            int hash = 7;
            hash = 31 * hash + (recommendedVersion == null ? 0 : recommendedVersion.hashCode());
            hash = 31 * hash + (restrictions == null ? 0 : restrictions.hashCode());
            return hash;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

                int hash = 17;
                hash = hash * 31 + groupId.hashCode();
                hash = hash * 31 + artifactId.hashCode();
                hash = hash * 31 + classifier.hashCode();
                hash = hash * 31 + extension.hashCode();
                hash = hash * 31 + version.hashCode();
                hash = hash * 31 + localRepo.hashCode();
                hash = hash * 31 + repositories.hashCode();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20.2K bytes
    - Viewed (0)
Back to top