Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for timeout (0.41 sec)

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

        public Future<ProjectSegment> take() throws InterruptedException {
            return null;
        }
    
        public Future<ProjectSegment> poll() {
            return null;
        }
    
        public Future<ProjectSegment> poll(long timeout, TimeUnit unit) throws InterruptedException {
            return null;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    new File(pom.getValue("properties/buildTestOut").toString()));
            assertEquals(
                    new File(pom.getBasedir(), "target/site"),
                    new File(pom.getValue("properties/siteOut").toString()));
        }
    
        /* MNG-3944*/
        @Test
        void testInterpolationOfBasedirInPomWithUnusualName() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
Back to top