Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for VersionInfo (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

            }
        }
    
        private void merge(
                String key,
                Map<String, VersionInfo> infos,
                String timestamp,
                String version,
                ArtifactRepository repository) {
            VersionInfo info = infos.get(key);
            if (info == null) {
                info = new VersionInfo(timestamp, version, repository);
                infos.put(key, info);
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 08:42:00 GMT 2025
    - 20.2K bytes
    - Click Count (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild.wrapper.gradle.kts

                val jsonText = URI("https://services.gradle.org/versions/$label").toURL().readText()
                val versionInfo = Gson().fromJson(jsonText, VersionDownloadInfo::class.java)
                println("updating wrapper to $label version: ${versionInfo.version} (downloadUrl: ${versionInfo.downloadUrl})")
                wrapperTask.get().distributionUrl = versionInfo.downloadUrl
            }
        }
    }
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Sep 17 08:58:33 GMT 2024
    - 1.4K bytes
    - Click Count (0)
  3. cmd/metrics-v2.go

    	latencyMicroSec MetricName = "latency_us"
    	latencyNanoSec  MetricName = "latency_ns"
    
    	commitInfo  MetricName = "commit_info"
    	usageInfo   MetricName = "usage_info"
    	versionInfo MetricName = "version_info"
    
    	sizeDistribution    = "size_distribution"
    	versionDistribution = "version_distribution"
    	ttfbDistribution    = "seconds_distribution"
    	ttlbDistribution    = "ttlb_seconds_distribution"
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 133.6K bytes
    - Click Count (0)
Back to Top