Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/DefaultArtifactVersion.java

            }
        }
    
        public int getMajorVersion() {
            return majorVersion != null ? majorVersion : 0;
        }
    
        public int getMinorVersion() {
            return minorVersion != null ? minorVersion : 0;
        }
    
        public int getIncrementalVersion() {
            return incrementalVersion != null ? incrementalVersion : 0;
        }
    
        public int getBuildNumber() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. .github/workflows/sigbuild-docker.yml

              major_version=$(grep "^#define TF_MAJOR_VERSION" ./tensorflow/core/public/version.h | grep -o "[[:digit:]]\+")
              minor_version=$(grep "^#define TF_MINOR_VERSION" ./tensorflow/core/public/version.h | grep -o "[[:digit:]]\+")
              echo "TF_VERSION=${major_version}.${minor_version}" >> "$GITHUB_OUTPUT"
              # Also get the current date to do cache busting. Assumes one day
              # is an ok range for rebuilds
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top