Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for CurrentVersion (0.3 sec)

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

                    ])
    
                    addSetupRule(AcceptedRegressionsRuleSetup, acceptedChangesMap)
                    addSetupRule(SinceAnnotationMissingRuleCurrentGradleVersionSetup, [currentVersion: currentVersion])
                    addSetupRule(BinaryCompatibilityRepositorySetupRule, [
                        (BinaryCompatibilityRepositorySetupRule.Params.sourceRoots): sourceRoots.collect { it.absolutePath } as Set,
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Sep 25 13:49:37 GMT 2023
    - 6.3K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationMissingRuleCurrentGradleVersionSetup.java

    import java.util.Map;
    
    public class SinceAnnotationMissingRuleCurrentGradleVersionSetup implements SetupRule {
    
        private final String currentVersion;
    
        public SinceAnnotationMissingRuleCurrentGradleVersionSetup(Map<String, String> currentVersion) {
            this.currentVersion = currentVersion.get("currentVersion");
        }
    
        @Override
        @SuppressWarnings("unchecked")
        public void execute(ViolationCheckContext context) {
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.3K bytes
    - Viewed (0)
  3. 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) {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 18 11:03:17 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    					Host:           nerr.Host.String(),
    					Err:            nerr.Err.Error(),
    					CurrentVersion: Version,
    				}
    				failedClients[idx] = struct{}{}
    			} else {
    				peerResults[nerr.Host.String()] = madmin.ServerPeerUpdateStatus{
    					Host:           nerr.Host.String(),
    					CurrentVersion: Version,
    					UpdatedVersion: lrTime.Format(MinioReleaseTagTimeLayout),
    				}
    			}
    		}
    	}
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
  5. cmd/server-rlimit.go

    	"github.com/minio/cli"
    	"github.com/minio/madmin-go/v3/kernel"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v2/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
    	}
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:06:57 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  6. 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 relativePathToApiChanges() {
            if (null != apiChangesJsonFile && null != projectRootDir) {
                return projectRootDir.relativePath(apiChangesJsonFile)
            } else {
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

        def isSnapshot = moduleIdentity.snapshot
        inputs.property('acceptedViolations', acceptedViolations.toAcceptedChangesMap())
        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)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Apr 11 12:20:44 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  8. 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) {
    Groovy
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Dec 01 20:12:19 GMT 2023
    - 16K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val version: Version
            val currentVersion: String
            val message: String
        }
    
        interface VersionRequirementDeprecation : KtFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = VersionRequirementDeprecation::class
            val reference: KtSymbol
            val version: Version
            val currentVersion: String
            val message: String
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 171.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class VersionRequirementDeprecationErrorImpl(
        override val reference: KtSymbol,
        override val version: Version,
        override val currentVersion: String,
        override val message: String,
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KtFirDiagnostic.VersionRequirementDeprecationError
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 225.2K bytes
    - Viewed (0)
Back to top