Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for Iterator (0.16 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/DefaultLifecyclesStub.java

            List<String> stubWrapperCycle = Arrays.asList(WRAPPER.getPhase());
    
            Iterator<List<String>> lcs = Arrays.asList(stubDefaultCycle, stubCleanCycle, stubSiteCycle, stubWrapperCycle)
                    .iterator();
    
            Map<String, Lifecycle> lifeCycles = new HashMap<>();
            for (String s : DefaultLifecycles.STANDARD_LIFECYCLES) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDebugLogger.java

            if (!logger.isDebugEnabled()) {
                return;
            }
    
            logger.debug("=== REACTOR BUILD PLAN ================================================");
    
            for (Iterator<ProjectSegment> it = projectBuilds.iterator(); it.hasNext(); ) {
                ProjectSegment projectBuild = it.next();
    
                logger.debug("Project: " + projectBuild.getProject().getId());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/ProjectDependenciesResolverTest.java

            artifactDependencies = resolver.resolve( project, Collections.singleton( Artifact.SCOPE_RUNTIME ), session );
            assertEquals( 1, artifactDependencies.size() );
            assertEquals( "b", artifactDependencies.iterator().next().getArtifactId() );
        }
        */
    
        @Test
        void testSystemScopeDependencies() throws Exception {
            MavenSession session = createMavenSession(null);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            assertEquals("1.0", artifact.getVersion(), "collect has modified version in originating artifact");
    
            Artifact resolvedArtifact = result.getArtifacts().iterator().next();
    
            assertEquals("1.0", resolvedArtifact.getVersion(), "Resolved version don't match original artifact version");
        }
    
        @Test
        void testResolveCompileScopeOverTestScope()
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    synchronized class FastMap$KeySet$1 implements java.util.Iterator { FastMap$EntryImpl after; FastMap$EntryImpl before; void FastMap$KeySet$1(FastMap$KeySet); public void remove(); public boolean hasNext(); public Object next(); } org/codehaus/plexus/util/FastMap$KeySet.class package org.codehaus.plexus.util; synchronized class FastMap$KeySet extends java.util.AbstractSet { private void FastMap$KeySet(FastMap); public java.util.Iterator iterator(); public int size(); public boolean contains(Object);...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 164.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    ComponentList extends AbstractComponentCol implements java.util.List { private java.util.List components; public void ComponentList(String, java.util.List); public int size(); public boolean isEmpty(); public boolean contains(Object); public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int,...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 205.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/CacheUtils.java

        }
    
        private static boolean dependenciesEquals(List<Dependency> a, List<Dependency> b) {
            if (a.size() != b.size()) {
                return false;
            }
    
            Iterator<Dependency> aI = a.iterator();
            Iterator<Dependency> bI = b.iterator();
    
            while (aI.hasNext()) {
                Dependency aD = aI.next();
                Dependency bD = bI.next();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraphTest.java

            // only Project.A has no dependencies
            assertEquals(1, rootSchedulableBuilds.size());
            assertEquals(
                    ProjectDependencyGraphStub.A, rootSchedulableBuilds.iterator().next());
            // double check A deps
            List<MavenProject> dependenciesA = graph.getDependencies(ProjectDependencyGraphStub.A);
            assertEquals(0, dependenciesA.size());
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    ComponentList extends AbstractComponentCol implements java.util.List { private java.util.List components; public void ComponentList(String, java.util.List); public int size(); public boolean isEmpty(); public boolean contains(Object); public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int,...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    ComponentList extends AbstractComponentCol implements java.util.List { private java.util.List components; public void ComponentList(String, java.util.List); public int size(); public boolean isEmpty(); public boolean contains(Object); public java.util.Iterator iterator(); public Object[] toArray(); public Object[] toArray(Object[]); public boolean add(Object); public boolean remove(Object); public boolean containsAll(java.util.Collection); public boolean addAll(java.util.Collection); public boolean addAll(int,...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 233.3K bytes
    - Viewed (0)
Back to top