Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for formatEntry (0.18 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

        }
    
        static String formatEntry(String entry) {
            endLineWithDot(entry.capitalize())
        }
    
        String render(boolean renderSolutions = true) {
            def newLine = "\n${checker.messageIndent}"
            def sb = label(newLine)
            if (reason) {
                sb.append("Reason: ")
                    .append(formatEntry(reason))
                    .append(newLine)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. src/testing/fstest/testfs.go

    		if entry1 == nil {
    			checkMode(entry2)
    			diffs = append(diffs, "+ "+formatEntry(entry2))
    			continue
    		}
    		if formatEntry(entry1) != formatEntry(entry2) {
    			diffs = append(diffs, "- "+formatEntry(entry1), "+ "+formatEntry(entry2))
    		}
    		delete(old, entry2.Name())
    	}
    	for _, entry1 := range old {
    		diffs = append(diffs, "- "+formatEntry(entry1))
    	}
    
    	if len(diffs) == 0 {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top