Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toWindows (0.09 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

            when:
            cleanWorkspace()
            file('producer/foo/bar.txt').text = toWindows(TEXT_WITH_LINE_ENDINGS)
            execute('showTransformedFiles')
    
            then:
            assertTransformSkipped()
    
            when:
            cleanWorkspace()
            file('inputs/baz.txt').text = toWindows(TEXT_WITH_LINE_ENDINGS)
            execute('showTransformedFiles')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. src/debug/dwarf/line_test.go

    	toWindows := func(lf *LineFile) *LineFile {
    		lf2 := *lf
    		lf2.Name = strings.Replace(lf2.Name, "/home/austin/go.dev/", "C:\\workdir\\go\\", -1)
    		lf2.Name = strings.Replace(lf2.Name, "/", "\\", -1)
    		return &lf2
    	}
    	file1C := toWindows(file1C)
    	file1H := toWindows(file1H)
    	file2C := toWindows(file2C)
    
    	// Line table based on objdump --dwarf=rawline,decodedline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top