Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for Lata (0.15 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultWagonManagerTest.java

        @Inject
        private ArtifactRepositoryFactory artifactRepositoryFactory;
    
        @Test
        void testUnnecessaryRepositoryLookup() throws Exception {
            Artifact artifact = createTestPomArtifact("target/test-data/get-missing-pom");
    
            List<ArtifactRepository> repos = new ArrayList<>();
            repos.add(artifactRepositoryFactory.createArtifactRepository(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleTaskSegmentCalculatorImplTest.java

            final ProjectBuildList segments = buildList.getByTaskSegment(taskSegments.get(0));
            assertEquals(3, taskSegments.size(), "Stub data contains 3 segments");
            assertEquals(6, segments.size(), "Stub data contains 6 items");
            final ProjectSegment build = segments.get(0);
            assertNotNull(build);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            List<String> details = new ArrayList<>();
    
            org.eclipse.aether.graph.DependencyNode winner =
                    (org.eclipse.aether.graph.DependencyNode) node.getData().get(ConflictResolver.NODE_DATA_WINNER);
            String winnerVersion = winner != null ? winner.getArtifact().getBaseVersion() : null;
            boolean included = (winnerVersion == null);
    
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

            List<String> details = new ArrayList<>();
    
            org.eclipse.aether.graph.DependencyNode winner =
                    (org.eclipse.aether.graph.DependencyNode) node.getData().get(ConflictResolver.NODE_DATA_WINNER);
            String winnerVersion = winner != null ? winner.getArtifact().getBaseVersion() : null;
            boolean included = (winnerVersion == null);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

    /**
     * Caches raw plugin descriptors. A raw plugin descriptor is a descriptor that has just been extracted from the plugin
     * artifact and does not contain any runtime specific data. The cache must not be used for descriptors that hold runtime
     * data like the plugin realm. <strong>Warning:</strong> This is an internal utility interface that is only public for
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/BuildResumptionPersistenceException.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution;
    
    /**
     * This exception will be thrown when something fails while persisting build resumption data.
     * @see BuildResumptionDataRepository#persistResumptionData
     */
    public class BuildResumptionPersistenceException extends Exception {
        public BuildResumptionPersistenceException(String message, Throwable cause) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 1.2K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinateFactory.java

    @Experimental
    public interface DependencyCoordinateFactory extends Service {
    
        /**
         * Creates a new {@link DependencyCoordinate} object from the request.
         *
         * @param request the request containing the various data
         * @return a new {@link DependencyCoordinate} object
         *
         * @throws IllegalArgumentException if {@code request} is null or
         *         if {@code request.getSession()} is null or invalid
         */
        @Nonnull
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                    request.getLocalRepository(),
                    request.getRemoteRepositories());
    
            if (cached != null
                    // if the POM has no file, we cached a missing artifact, only return the cached data if no update forced
                    && (!request.isForceUpdate() || hasFile(cached.getPomArtifact()))) {
                return cached;
            }
    
            List<Dependency> dependencies;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 30.3K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

        void injectMirror(List<ArtifactRepository> repositories, List<Mirror> mirrors);
    
        /**
         * Injects the proxy information into the specified repositories. For each repository that is matched by a proxy,
         * its proxy data will be set accordingly. Repositories without a matching proxy will have their proxy cleared.
         * Note: This method must be called after {@link #injectMirror(List, List)} or the repositories will end up
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListenerTest.java

            final CollectStepData data = mock(CollectStepData.class);
    
            RequestTrace haveItFirst = RequestTrace.newChild(null, data)
                    .newChild("foo")
                    .newChild("bar")
                    .newChild("baz");
            assertThat(ReverseTreeRepositoryListener.lookupCollectStepData(haveItFirst), sameInstance(data));
    
            RequestTrace haveItLast = RequestTrace.newChild(null, "foo")
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 4.2K bytes
    - Viewed (0)
Back to top