Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java

                // Get local midnight boundary
                Calendar cal = Calendar.getInstance();
    
                cal.set(Calendar.HOUR_OF_DAY, 0);
                cal.set(Calendar.MINUTE, 0);
                cal.set(Calendar.SECOND, 0);
                cal.set(Calendar.MILLISECOND, 0);
    
                if (cal.getTime().after(lastModified)) {
                    checkForUpdates = true;
                }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals(2, ((List<?>) pom.getValue("repositories")).size());
        }
    
        /** MNG-3965 */
        @Test
        void testMultipleExecutionIds() throws Exception {
            PomTestWrapper pom = buildPom("dual-execution-ids/sub");
            assertEquals(1, ((List<?>) pom.getValue("build/plugins[1]/executions")).size());
        }
    
        /** MNG-3997 */
        @Test
        void testConsecutiveEmptyElements() throws Exception {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
Back to top