- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for currentVersion (0.35 sec)
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationRuleCurrentGradleVersionSetup.java
import java.util.Map; public class SinceAnnotationRuleCurrentGradleVersionSetup implements SetupRule { private final String currentVersion; public SinceAnnotationRuleCurrentGradleVersionSetup(Map<String, String> currentVersion) { this.currentVersion = currentVersion.get("currentVersion"); } @Override @SuppressWarnings("unchecked") public void execute(ViolationCheckContext context) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jun 06 17:52:09 UTC 2025 - 1.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy
addSetupRule(AcceptedRegressionsRuleSetup, [acceptedApiChanges: acceptedChanges]) addSetupRule(SinceAnnotationRuleCurrentGradleVersionSetup, [currentVersion: currentVersion]) addSetupRule(BinaryCompatibilityRepositorySetupRule, [ (BinaryCompatibilityRepositorySetupRule.Params.sourceRoots): sourceRoots.collect { it.absolutePath } as Set,Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 5.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/MavenPluginJavaPrerequisiteChecker.java
+ " is not met by current version: " + currentJavaVersion); } } } boolean matchesVersion(String requiredVersion, String currentVersion) { VersionConstraint constraint; try { constraint = versionScheme.parseVersionConstraint(requiredVersion); } catch (InvalidVersionSpecificationException e) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
cmd/server-rlimit.go
"github.com/dustin/go-humanize" "github.com/minio/madmin-go/v3/kernel" "github.com/minio/minio/internal/logger" "github.com/minio/pkg/v3/sys" ) func oldLinux() bool { currentKernel, err := kernel.CurrentVersion() if err != nil { // Could not probe the kernel version return false } if currentKernel == 0 { // We could not get any valid value return false return false }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Jul 02 15:09:36 UTC 2024 - 2.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle
} def isSnapshot = gradleModule.identity.snapshot inputs.files(acceptedViolationsFiles) inputs.property("baseline.version", compatibilityBaselineVersion) inputs.property("currentVersion", baseVersion) def apiSourceFolders = configurations.currentSources.incoming.artifactView { lenient(true) }.files inputs.files("apiSourceFolders", apiSourceFolders) inputs.files(currentClasspath)Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 8.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultLegacySupport.java
} } @Override public MavenSession getSession() { AtomicReference<MavenSession> currentSession = DefaultLegacySupport.SESSION.get(); return currentSession != null ? currentSession.get() : null; } @Override public RepositorySystemSession getRepositorySession() { MavenSession session = getSession();Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.4K bytes - Viewed (0)