Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for VERSION (0.2 sec)

  1. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <version>1.0.0+</version>
              <description>The artifact id of the plugin.</description>
              <type>String</type>
            </field>
            <field>
              <name>version</name>
              <version>1.0.0+</version>
              <description>The version of the plugin.</description>
              <type>String</type>
              <required>true</required>
            </field>
            <field>
              <name>goalPrefix</name>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         *         of this version range and the specified version range if both version ranges have
         *         restrictions. Otherwise, the restrictions on the returned range will be empty.
         *         </p>
         *         <p>
         *         The recommended version of the returned version range will be the recommended version of
         *         this version range, provided that ranges falls within the intersected restrictions. If
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  3. src/test/resources/plugin/repo1/fess-ds-atlassian/maven-metadata.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <metadata>
        <groupId>org.codelibs.fess</groupId>
        <artifactId>fess-ds-atlassian</artifactId>
        <versioning>
            <latest>13.2.0</latest>
            <release>13.2.0</release>
            <versions>
                <version>12.2.0</version>
                <version>12.5.0</version>
                <version>12.6.0</version>
                <version>12.7.0</version>
                <version>13.0.0</version>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 13 07:34:14 GMT 2019
    - 606 bytes
    - Viewed (0)
  4. .github/workflows/sigbuild-docker.yml

              build-args: |
                PYTHON_VERSION=${{ matrix.python-version }}
                CACHEBUSTER=${{ steps.tf-version.outputs.DATE }}
              tags: |
                tensorflow/build:latest-${{ matrix.python-version }}
                tensorflow/build:${{ steps.tf-version.outputs.TF_VERSION }}-${{ matrix.python-version }}
                gcr.io/tensorflow-sigs/build:latest-${{ matrix.python-version }}
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Oct 23 18:43:43 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java

    public final class ArtifactUtils {
    
        public static boolean isSnapshot(String version) {
            if (version != null) {
                if (version.regionMatches(
                        true,
                        version.length() - Artifact.SNAPSHOT_VERSION.length(),
                        Artifact.SNAPSHOT_VERSION,
                        0,
                        Artifact.SNAPSHOT_VERSION.length())) {
                    return true;
                } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.pom

          <artifactId>plexus-utils</artifactId>
          <version>1.4.5</version>
        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-container-default</artifactId>
          <version>1.0-alpha-32</version>
        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-active-collections</artifactId>
          <version>1.0-beta-1</version>
        </dependency>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 3.7K bytes
    - Viewed (0)
  7. maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/pom.xml

              <version>0.1</version>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-deploy-plugin</artifactId>
              <version>0.1</version>
            </plugin>
            <plugin>
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-install-plugin</artifactId>
              <version>0.1</version>
            </plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Nov 07 15:16:39 GMT 2019
    - 3.8K bytes
    - Viewed (0)
  8. configure.py

      curr_version_split = curr_version.lower().split('clang version ')
      if len(curr_version_split) > 1:
        curr_version = curr_version_split[1].split()[0]
    
      curr_version_int = convert_version_to_int(curr_version)
      # Check if current clang version can be detected properly.
      if not curr_version_int:
        print('WARNING: current clang installation is not a release version.\n')
        return None
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinateFactoryRequest.java

                this.artifactId = artifactId;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder version(String version) {
                this.version = version;
                return this;
            }
    
            public ArtifactFactoryRequestBuilder classifier(String classifier) {
                this.classifier = classifier;
                return this;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 18 10:30:20 GMT 2023
    - 7.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-management-inheritance/pom.xml

              <artifactId>maven-compiler-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
            </plugin>
            <plugin>
              <artifactId>maven-jar-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
            </plugin>
            <plugin>
              <artifactId>maven-javadoc-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
            </plugin>
            <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
Back to top