- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 11 for currentVersion (0.14 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GenerateReleaseNotesTask.java
.filter(each -> each.isBefore(currentVersion) && (currentVersion.hasQualifier() == each.hasQualifier())) .sorted(naturalOrder()) .collect(toList()); if (earlierVersions.isEmpty()) { throw new GradleException("Failed to find git tags prior to [v" + currentVersion + "]"); }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 06:25:29 GMT 2021 - 12.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java
String currentVersion; boolean isProperty = false; String propertyName = null; if (versionElement != null) { currentVersion = versionElement.textContentTrimmed(); // Check if version is a property reference if (currentVersion.startsWith("${") && currentVersion.endsWith("}")) { isProperty = true;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 37K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcVersions.java
if (majors.size() != 2 && currentVersion.getMinor() != 0 && currentVersion.getRevision() != 0) { throw new IllegalStateException("Expected exactly 2 majors in parsed versions but found: " + majors); } } private void assertCurrentVersionMatchesParsed(Version currentVersionProperty) { if (currentVersionProperty.equals(currentVersion) == false) { throw new IllegalStateException(
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 16.8K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
processedPoms.add(pomPath); String currentVersion = ModelVersionUtils.detectModelVersion(pomDocument); context.info(pomPath + " (current: " + currentVersion + ")"); context.indent(); try { if (!ModelVersionUtils.isEligibleForInference(currentVersion)) { context.warning(
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 27.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java
processedPoms.add(pomPath); String currentVersion = ModelVersionUtils.detectModelVersion(pomDocument); context.info(pomPath + " (current: " + currentVersion + ")"); context.indent(); try { if (currentVersion.equals(targetModelVersion)) { context.success("Already at target version " + targetModelVersion);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 16.6K bytes - Click Count (0) -
build-tools-internal/src/test/java/org/elasticsearch/gradle/internal/BwcVersionsTests.java
} private BwcVersions getVersionCollection(String currentVersion) { return new BwcVersions( sampleVersions.get(currentVersion).stream().map(this::formatVersionToLine).collect(Collectors.toList()), Version.fromString(currentVersion) ); }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 23.7K bytes - Click Count (0) -
src/main/java/jcifs/util/SecureKeyManager.java
} try { // Generate new key version int currentVersion = keyVersions.getOrDefault(sessionId, 0); int newVersion = currentVersion + 1; // Derive new key from current key String rotationLabel = String.format("KeyRotation-v%d", newVersion);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 21.5K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java
JavaVersion currentVersion = Jvm.current().getJavaVersion(); if (System.getProperty("idea.active", "false").equals("true") == false && minimumCompilerVersion.compareTo(currentVersion) > 0) { throw new GradleException( "Project requires Java version of " + minimumCompilerVersion + " or newer but Gradle JAVA_HOME is " + currentVersion ); } }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 17 10:02:58 GMT 2021 - 18.1K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
new Gson().toJson(acceptanceJson, AcceptedApiChange, writer) } return stringWriter.toString() } String getCurrentVersion() { return context.getUserData().get("currentVersion") } private String relativePathToMainApiChanges() { if (null != mainApiChangesJsonFile && null != projectRootDir) { return projectRootDir.relativePath(mainApiChangesJsonFile)
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 22 12:18:18 GMT 2026 - 10K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy
@Override String getClassName() { TEST_INTERFACE_NAME } @Override Map<String, ?> getUserData() { [ currentVersion: '11.38', (BinaryCompatibilityRepositorySetupRule.REPOSITORY_CONTEXT_KEY): repository ] } @Override <T> T getUserData(String key) {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 06 17:52:09 GMT 2025 - 16K bytes - Click Count (0)