Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,040 for version (0.18 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * For example, resolves "[3.8,4.0)" to "3.8", "3.8.1", "3.8.2".
         * The returned list of versions is only dependent on the configured repositories and their contents.
         * The supplied request may also refer to a single concrete version rather than a version range.
         * In this case though, the result contains simply the (parsed) input version, regardless of the
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                version = versions.releaseVersion;
                repo = versions.releaseRepository;
            } else if (versions.latestVersion != null && !versions.latestVersion.isEmpty()) {
                version = versions.latestVersion;
                repo = versions.latestRepository;
            }
            if (version != null && !isCompatible(request, version)) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                    TestCoverage(11, TestType.allVersionsCrossVersion, Os.WINDOWS, JvmCategory.MIN_VERSION_WINDOWS, ALL_CROSS_VERSION_BUCKETS.size),
                    TestCoverage(12, TestType.noDaemon, Os.LINUX, JvmCategory.MIN_VERSION, DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE),
                    TestCoverage(13, TestType.noDaemon, Os.WINDOWS, JvmCategory.MAX_LTS_VERSION),
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  4. docs/bucket/replication/DESIGN.md

    active-active replication caused by allowing delete markers set on a object version with `REPLICA` status back to source.
    
    In the case of versioned deletes a.k.a permanent delete of a version by doing a `mc rm --version-id` on a object, replication implementation marks a object version permanently deleted as `PENDING` purge and deletes the version from source after syncing to the target and ensuring target version is deleted. The delete marker being deleted or object version being deleted...
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 14.7K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                String message,
                String groupId,
                String artifactId,
                String version,
                String type,
                String classifier,
                List<ArtifactRepository> remoteRepositories,
                List<String> path) {
            this(message, groupId, artifactId, version, type, classifier, remoteRepositories, path, null);
        }
    
        @SuppressWarnings("checkstyle:parameternumber")
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.1K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/errwrap/LICENSE

    
    10. Versions of the License
    
    10.1. New Versions
    
          Mozilla Foundation is the license steward. Except as provided in Section
          10.3, no one other than the license steward has the right to modify or
          publish new versions of this License. Each version will be given a
          distinguishing version number.
    
    10.2. Effect of New Versions
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/hcl/LICENSE

    
    10. Versions of the License
    
    10.1. New Versions
    
          Mozilla Foundation is the license steward. Except as provided in Section
          10.3, no one other than the license steward has the right to modify or
          publish new versions of this License. Each version will be given a
          distinguishing version number.
    
    10.2. Effect of New Versions
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  8. LICENSE

    Program specifies that a certain numbered version of the GNU Affero General
    Public License "or any later version" applies to it, you have the
    option of following the terms and conditions either of that numbered
    version or of any later version published by the Free Software
    Foundation.  If the Program does not specify a version number of the
    GNU Affero General Public License, you may choose any version ever published
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 23 18:58:53 GMT 2021
    - 33.7K bytes
    - Viewed (0)
  9. pom.xml

    			<artifactId>lasta-di</artifactId>
    			<version>${lasta.di.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.lastaflute</groupId>
    			<artifactId>lastaflute</artifactId>
    			<version>${lastaflute.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.lastaflute.html</groupId>
    			<artifactId>lasta-taglib</artifactId>
    			<version>${lasta.taglib.version}</version>
    		</dependency>
    
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                    .getPathForRemoteArtifact(this, getLocalRepository(), remote, artifact);
        }
    
        @Override
        public Version parseVersion(String version) {
            return getService(VersionParser.class).parseVersion(version);
        }
    
        @Override
        public VersionRange parseVersionRange(String versionRange) {
            return getService(VersionParser.class).parseVersionRange(versionRange);
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top