- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 814 for newer (0.05 seconds)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolutionPolicy.java
* artifact, closer to the entry point, is selected */ @Configuration(name = "closer-first", value = "true") private boolean closerFirst = true; /** * newer artifact is selected */ @Configuration(name = "newer-first", value = "true") private boolean newerFirst = true; @Override public MetadataGraphEdge apply(MetadataGraphEdge e1, MetadataGraphEdge e2) {Created: 2026-04-05 03:35 - Last Modified: 2025-06-06 14:28 - 2.2K bytes - Click Count (0) -
internal/logger/legacy.go
// Legacy envs const ( legacyEnvAuditLoggerHTTPEndpoint = "MINIO_AUDIT_LOGGER_HTTP_ENDPOINT" legacyEnvLoggerHTTPEndpoint = "MINIO_LOGGER_HTTP_ENDPOINT" ) // SetLoggerHTTPAudit - helper for migrating older config to newer KV format. func SetLoggerHTTPAudit(scfg config.Config, k string, args http.Config) { if !args.Enabled { // Do not enable audit targets, if not enabled return } scfg[config.AuditWebhookSubSys][k] = config.KVS{
Created: 2026-04-05 19:28 - Last Modified: 2023-08-03 09:47 - 2K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtils.java
|| MODEL_VERSION_4_2_0.equals(modelVersion); } /** * Checks if a model version is newer than 4.1.0. * * @param modelVersion the model version to check * @return true if newer than 4.1.0 */ public static boolean isNewerThan410(String modelVersion) { if (modelVersion == null) { return false; }
Created: 2026-04-05 03:35 - Last Modified: 2025-11-18 18:03 - 9.5K bytes - Click Count (0) -
cmd/update-notifier.go
) // prepareUpdateMessage - prepares the update message, only if a // newer version is available. func prepareUpdateMessage(downloadURL string, older time.Duration) string { if downloadURL == "" || older <= 0 { return "" } // Compute friendly duration string to indicate time // difference between newer and current release. t := time.Time{}
Created: 2026-04-05 19:28 - Last Modified: 2024-03-09 03:07 - 3.6K bytes - Click Count (0) -
cmd/update-notifier_test.go
// fmt.Println(output) switch { case testCase.dlURL == "" && output != "": t.Errorf("Testcase %d: no newer release available but got an update message: %s", i+1, output) case output == "" && testCase.dlURL != "" && testCase.older > 0: t.Errorf("Testcase %d: newer release is available but got empty update message!", i+1) case output == "" && (testCase.dlURL == "" || testCase.older <= 0):
Created: 2026-04-05 19:28 - Last Modified: 2023-07-31 15:36 - 4.1K bytes - Click Count (0) -
build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateReleasedVersionsTest.groovy
ReleasedVersionsHelperKt.updateReleasedVersions(version, versions) == releasedVersions(snapshot, rc, expectedVersions) } def "newer snapshots are stored"() { def referenceBuildTime = System.currentTimeMillis() - DAYS.toMillis(10) def oldSnapshot = snapshot('4.3', referenceBuildTime) def rc = releasedVersion('4.2-rc-1')
Created: 2026-04-01 11:36 - Last Modified: 2026-03-23 14:47 - 5.4K bytes - Click Count (0) -
build-logic-commons/build-platform/build.gradle.kts
plugins { `java-platform` } group = "gradlebuild" description = "Provides a platform that constrains versions of external dependencies used by Gradle" // To try out newer kotlin versions val kotlinVersion = providers.gradleProperty("buildKotlinVersion") .getOrElse(embeddedKotlinVersion) dependencies { constraints { val distributionDependencies = versionCatalogs.named("buildLibs")Created: 2026-04-01 11:36 - Last Modified: 2026-02-25 02:25 - 897 bytes - Click Count (0) -
go.env
# Use the Go module mirror and checksum database by default. # See https://proxy.golang.org for details. GOPROXY=https://proxy.golang.org,direct GOSUMDB=sum.golang.org # Automatically download newer toolchains as directed by go.mod files. # See https://go.dev/doc/toolchain for details.
Created: 2026-04-07 11:13 - Last Modified: 2023-06-06 19:18 - 505 bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildResumptionDataRepository.java
*/ package org.apache.maven.execution; import org.apache.maven.project.MavenProject; /** * Instances of this interface retrieve and store data for the --resume / -r feature. This data is used to ensure newer * builds of the same project, that have the -r command-line flag, skip successfully built projects during earlier * invocations of Maven. */ public interface BuildResumptionDataRepository { /**Created: 2026-04-05 03:35 - Last Modified: 2024-10-25 12:31 - 2.3K bytes - Click Count (0) -
docs/distributed/DECOMMISSION.md
## Features - A pool in decommission still allows READ access to all its contents, newer WRITEs will automatically be scheduled to only pools not in decommission status.
Created: 2026-04-05 19:28 - Last Modified: 2022-07-11 14:59 - 8.3K bytes - Click Count (0)