Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sortedChanges (0.13 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTask.kt

        @TaskAction
        fun execute() {
            val originalChanges = loadChanges()
            val sortedChanges = originalChanges.mapValues {
                sortChanges(it.value)
            }
    
            val mismatches = originalChanges.mapValues {
                findMismatches(it.value, sortedChanges[it.key]!!)
            }.filterValues {
                it.isNotEmpty()
            }
    
            if (mismatches.isNotEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    		changes["toolchain"] = change{"toolchain", oldToolchain, newToolchain}
    	}
    
    	sortedChanges := make([]change, 0, len(changes))
    	for _, c := range changes {
    		sortedChanges = append(sortedChanges, c)
    	}
    	sort.Slice(sortedChanges, func(i, j int) bool {
    		pi := sortedChanges[i].path
    		pj := sortedChanges[j].path
    		if pi == pj {
    			return false
    		}
    		// go first; toolchain second
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top