Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 713 for lineB (0.04 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

                // 6
                """       | Error:              {description}line0{normal}
           |     Caused by:      {description}line1{normal}
           |     Caused by:      {description}line2{normal}
           |     Caused by:      {description}line3{normal}
           |     Caused by:      {description}line4{normal}
           |     Caused by:      {description}line5{normal}
           |                     {description}...{normal}""",
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  2. pkg/util/iptables/iptables_test.go

    		line:  10,
    		want: mkLines(
    			LineData{1, "Line1: 1"},
    			LineData{2, "Line2: 2"},
    			LineData{3, "Line3: 3"},
    			LineData{4, "Line4: 4"},
    			LineData{5, "Line5: 5"},
    			LineData{6, "Line6: 6"},
    			LineData{7, "Line7: 7"},
    			LineData{8, "Line8: 8"},
    			LineData{9, "Line9: 9"},
    			LineData{10, "Line10: 10"}),
    	}}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/LockFileReaderWriterTest.groovy

            given:
            def lockFile = lockDir.file('conf.lockfile')
            lockFile << """#Ignored
    line1
    
    line2"""
    
            when:
            def result = lockFileReaderWriter.readLockFile('conf')
    
            then:
            result == ['line1', 'line2']
    
            1 * listener.fileObserved(lockFile)
        }
    
        def 'reads a unique lock file'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/debug/dwarf/line.go

    	// File is the source file corresponding to these
    	// instructions.
    	File *LineFile
    
    	// Line is the source code line number corresponding to these
    	// instructions. Lines are numbered beginning at 1. It may be
    	// 0 if these instructions cannot be attributed to any source
    	// line.
    	Line int
    
    	// Column is the column number within the source line of these
    	// instructions. Columns are numbered beginning at 1. It may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  5. src/text/tabwriter/tabwriter.go

    // Returns the buffer position corresponding to the beginning of
    // line1 and an error, if any.
    func (b *Writer) format(pos0 int, line0, line1 int) (pos int) {
    	pos = pos0
    	column := len(b.widths)
    	for this := line0; this < line1; this++ {
    		line := b.lines[this]
    
    		if column >= len(line)-1 {
    			continue
    		}
    		// cell exists in this column => this line
    		// has more cells than the previous line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. src/debug/dwarf/line_test.go

    	zfile1C := &LineFile{Name: "/home/iant/go/src/debug/dwarf/testdata/line1.c"}
    	zfile2C := &LineFile{Name: "/home/iant/go/src/debug/dwarf/testdata/line2.c"}
    
    	// Line table based on readelf --debug-dump=rawline,decodedline
    	want := []LineEntry{
    		{Address: 0x401126, File: zfile1H, Line: 2, Column: 1, IsStmt: true},
    		{Address: 0x40112a, File: zfile1H, Line: 5, Column: 8, IsStmt: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. src/net/textproto/reader_test.go

    	line := strings.Repeat("12345", 10000)
    	r := reader(line + "\r\n")
    	s, err := r.ReadLine()
    	if err != nil {
    		t.Fatalf("Line 1: %v", err)
    	}
    	if s != line {
    		t.Fatalf("%v-byte line does not match expected %v-byte line", len(s), len(line))
    	}
    }
    
    func TestReadContinuedLine(t *testing.T) {
    	r := reader("line1\nline\n 2\nline3\n")
    	s, err := r.ReadContinuedLine()
    	if s != "line1" || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. src/debug/dwarf/testdata/line-clang.elf

    Andrew Gerrand <******@****.***> 1441330476 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 04 02:59:49 UTC 2015
    - 10K bytes
    - Viewed (0)
  9. src/debug/dwarf/testdata/line-gcc.elf

    Andrew Gerrand <******@****.***> 1441330476 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 04 02:59:49 UTC 2015
    - 9.9K bytes
    - Viewed (0)
  10. src/go/doc/comment/parse.go

    // from each line in lines, returning a copy of lines in which
    // those prefixes have been trimmed from each line.
    // It also replaces any lines containing only spaces with blank lines (empty strings).
    func unindent(lines []string) []string {
    	// Trim leading and trailing blank lines.
    	for len(lines) > 0 && isBlank(lines[0]) {
    		lines = lines[1:]
    	}
    	for len(lines) > 0 && isBlank(lines[len(lines)-1]) {
    		lines = lines[:len(lines)-1]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
Back to top