Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for reuse (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilter.java

            Predicate<Artifact> predArtifactId = a -> artifactId.matches(createPathProxy(a.getArtifactId()));
            return predGroupId.and(predArtifactId);
        }
    
        /**
         * In order to reuse the glob matcher from the filesystem, we need
         * to create Path instances.  Those are only used with the toString method.
         * This hack works because the only system-dependent thing is the path
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Aug 29 15:25:58 GMT 2023
    - 3K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

    sometimes make exceptions for this. Our decision will be guided by the
    two goals of preserving the free status of all derivatives of our free
    software and of promoting the sharing and reuse of software generally.
    
    NO WARRANTY
    
    11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO
    WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
  3. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

        @Test
        void testReuse() {
            ComparableVersion c1 = new ComparableVersion("1");
            c1.parseVersion("2");
    
            Comparable<?> c2 = newComparable("2");
    
            assertEquals(c1, c2, "reused instance should be equivalent to new instance");
        }
    
        /**
         * Test <a href="https://issues.apache.org/jira/browse/MNG-7644">MNG-7644</a> edge cases
         * 1.0.0.RC1 &lt; 1.0.0-RC2 and more generally:
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 09 06:39:47 GMT 2024
    - 14K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java

            void update(@Nonnull ByteBuffer input);
    
            /**
             * Returns the algorithm end result as string, never {@code null}. After invoking this method, this instance should
             * be discarded and not reused. For new checksum calculation you have to get new instance.
             */
            @Nonnull
            String checksum();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Dec 21 08:05:10 GMT 2023
    - 6.4K bytes
    - Viewed (0)
Back to top