Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for versionsMap (0.21 sec)

  1. tools/bug-report/pkg/common/common.go

    func IstiodDebugURLs(clusterVersion string) []string {
    	return versionMap[getVersionKey(clusterVersion)].istioDebugURLs
    }
    
    // ProxyDebugURLs returns a list of proxy debug URLs for the given version.
    func ProxyDebugURLs(clusterVersion string) []string {
    	return versionMap[getVersionKey(clusterVersion)].proxyDebugURLs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            def versions = gitVcs.getAvailableVersions(repoSpec)
            HashMap<String, String> versionMap = new HashMap()
            for (VersionRef ref : versions) {
                versionMap.put(ref.version, ref.canonicalId)
            }
    
            expect:
            versions.size() == 2
            versionMap['1.0.1'] == c1.id.name
            versionMap['v1.0.1'] == c1.id.name
        }
    
        def 'default branch of repo is master'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top