Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for negative (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        return modelSource.getLocation();
                    }
    
                    @Override
                    public Source resolve(String relative) {
                        if (modelSource instanceof ModelSource2 ms) {
                            return toSource(ms.getRelatedSource(relative));
                        } else {
                            return null;
                        }
                    }
                };
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            }
    
            return false;
        }
    
        /**
         * Compares two model versions.
         *
         * @param first the first version.
         * @param second the second version.
         * @return negative if the first version is newer than the second version, zero if they are the same or positive if
         * the second version is the newer.
         */
        private static int compareModelVersions(String first, String second) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
Back to top