Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for releases (0.21 sec)

  1. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                ArtifactRepositoryLayout repositoryLayout,
                ArtifactRepositoryPolicy snapshots,
                ArtifactRepositoryPolicy releases) {
            if (snapshots == null) {
                snapshots = new ArtifactRepositoryPolicy();
            }
    
            if (releases == null) {
                releases = new ArtifactRepositoryPolicy();
            }
    
            ArtifactRepository repository;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

                String url,
                ArtifactRepositoryLayout repositoryLayout,
                ArtifactRepositoryPolicy snapshots,
                ArtifactRepositoryPolicy releases) {
            return new MavenArtifactRepository(id, url, repositoryLayout, snapshots, releases);
        }
    
        public Artifact createArtifactWithClassifier(
                String groupId, String artifactId, String version, String type, String classifier) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

            if (settingsRepo.getSnapshots() != null) {
                repo.snapshots(convertRepositoryPolicy(settingsRepo.getSnapshots()));
            }
            if (settingsRepo.getReleases() != null) {
                repo.releases(convertRepositoryPolicy(settingsRepo.getReleases()));
            }
    
            return repo.build();
        }
    
        /**
         * @param settingsPolicy
         * @return a RepositoryPolicy
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

            if (settingsRepo.getSnapshots() != null) {
                repo.snapshots(convertRepositoryPolicy(settingsRepo.getSnapshots()));
            }
            if (settingsRepo.getReleases() != null) {
                repo.releases(convertRepositoryPolicy(settingsRepo.getReleases()));
            }
    
            return repo.build();
        }
    
        /**
         * @param settingsPolicy
         * @return a RepositoryPolicy
         */
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        /* MNG-1995 */
        @Test
        void testBooleanInterpolation() throws Exception {
            PomTestWrapper pom = buildPom("boolean-interpolation");
            assertEquals(true, pom.getValue("repositories[1]/releases/enabled"));
            assertEquals(true, pom.getValue("build/resources[1]/filtering"));
        }
    
        /* MNG-3899 */
        @Test
        void testBuildExtensionInheritance() 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)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       */
      final void maybePropagateCancellationTo(@CheckForNull Future<?> related) {
        if (related != null & isCancelled()) {
          related.cancel(wasInterrupted());
        }
      }
    
      /** Releases all threads in the {@link #waiters} list, and clears the list. */
      private void releaseWaiters() {
        Waiter head = ATOMIC_HELPER.gasWaiters(this, Waiter.TOMBSTONE);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 63K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/Striped64.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.9
     */
    
    package com.google.common.cache;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.util.Random;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/VersionsMetadata.java

        }
    
        @Override
        public String getVersion() {
            return "";
        }
    
        @Override
        public Nature getNature() {
            return artifact.isSnapshot() ? Nature.RELEASE_OR_SNAPSHOT : Nature.RELEASE;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 10:10:21 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/PluginsMetadata.java

            return "";
        }
    
        @Override
        public String getVersion() {
            return "";
        }
    
        @Override
        public Nature getNature() {
            return Nature.RELEASE_OR_SNAPSHOT;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 10:10:21 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            } finally {
                if (configurator != null) {
                    try {
                        container.release(configurator);
                    } catch (ComponentLifecycleException e) {
                        logger.debug("Failed to release mojo configurator - ignoring.");
                    }
                }
            }
        }
    
        private void validateParameters(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
Back to top