- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for minorVersion (0.12 sec)
-
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) -
pom.xml
<osgi-version-qualifier>${maven.build.timestamp}</osgi-version-qualifier> <osgi.version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${osgi-version-qualifier}</osgi.version> <osgi.pkg.version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</osgi.pkg.version> </properties> <build> <plugins> <plugin>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Sep 26 04:40:32 UTC 2024 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
final String[] values = version.split("\\."); majorVersion = Integer.parseInt(values[0]); minorVersion = Integer.parseInt(values[1]); productVersion = majorVersion + "." + minorVersion; System.setProperty("fess.version", version); System.setProperty("fess.product.version", productVersion); } catch (final Exception e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0) -
.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)