Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for snapshot (0.32 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        void testParentInterpolation() throws Exception {
            PomTestWrapper pom = buildPom("parent-interpolation/sub");
            pom = new PomTestWrapper(pom.getMavenProject().getParent());
            assertEquals("1.3.0-SNAPSHOT", pom.getValue("build/plugins[1]/version"));
        }
    
        /*
        public void testMaven()
            throws Exception
        {
            PomTestWrapper pom =  buildPomFromMavenProject( "maven-build/sub/pom.xml", null );
    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)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        throw new IllegalStateException(
                                "Failed to create release distribution repository for " + project.getId(), e);
                    }
                }
    
                // snapshot artifact repository
                if (project.getDistributionManagement() != null
                        && project.getDistributionManagement().getSnapshotRepository() != null) {
                    try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            }
    
            if (string.endsWith("SNAPSHOT") && !string.endsWith("-SNAPSHOT")) {
                addViolation(
                        problems,
                        severity,
                        version,
                        fieldName,
                        sourceHint,
                        "uses an unsupported snapshot version format, should be '*-SNAPSHOT' instead.",
                        tracker);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         */
        volatile int count;
    
        /**
         * Number of updates that alter the size of the table. This is used during bulk-read methods to
         * make sure they see a consistent snapshot: If modCounts change during a traversal of segments
         * computing size or checking containsValue, then we might have an inconsistent view of state so
         * (usually) must retry.
         */
        int modCount;
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            }
    
            return pluginArtifactRepositories;
        }
    
        public ArtifactRepository getDistributionManagementArtifactRepository() {
            return getArtifact().isSnapshot() && (getSnapshotArtifactRepository() != null)
                    ? getSnapshotArtifactRepository()
                    : getReleaseArtifactRepository();
        }
    
        public List<Repository> getPluginRepositories() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

       * iterable. The key used to store that value in the multimap will be the result of calling the
       * function on that value. The resulting multimap is created as an immutable snapshot. In the
       * returned multimap, keys appear in the order they are first encountered, and the values
       * corresponding to each key appear in the same order as they are encountered.
       *
       * <p>For example,
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/CacheBuilder.java

                @Override
                public void recordLoadException(long loadTime) {}
    
                @Override
                public void recordEviction() {}
    
                @Override
                public CacheStats snapshot() {
                  return EMPTY_STATS;
                }
              });
      static final CacheStats EMPTY_STATS = new CacheStats(0, 0, 0, 0, 0, 0);
    
      /*
       * We avoid using a method reference or lambda here for now:
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
Back to top