Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,631 for bline (0.06 sec)

  1. src/net/parse_test.go

    	lineno := 1
    	byteno := 0
    	for {
    		bline, berr := br.ReadString('\n')
    		if n := len(bline); n > 0 {
    			bline = bline[0 : n-1]
    		}
    		line, ok := file.readLine()
    		if (berr != nil) != !ok || bline != line {
    			t.Fatalf("%s:%d (#%d)\nbufio => %q, %v\nnet => %q, %v", filename, lineno, byteno, bline, berr, line, ok)
    		}
    		if !ok {
    			break
    		}
    		lineno++
    		byteno += len(line) + 1
    	}
    }
    
    func TestDtoi(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 00:04:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/Line.java

    import java.util.Arrays;
    import java.util.List;
    import java.util.stream.Collectors;
    import java.util.stream.IntStream;
    
    public class Line {
        String label;
        List<List<Number>> data;
    
        public Line(MeasuredOperationList measuredOperations) {
            List<Double> points = measuredOperations.getTotalTime().asDoubleList();
            this.label = measuredOperations.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/pos.go

    	pname := p.RelFilename()
    	qname := q.RelFilename()
    	switch {
    	case pname < qname:
    		return -1
    	case pname > qname:
    		return +1
    	}
    
    	pline := p.Line()
    	qline := q.Line()
    	switch {
    	case pline < qline:
    		return -1
    	case pline > qline:
    		return +1
    	}
    
    	pcol := p.Col()
    	qcol := q.Col()
    	switch {
    	case pcol < qcol:
    		return -1
    	case pcol > qcol:
    		return +1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/line.go

    }
    
    // getFileIndexAndLine returns the relative file index (local to the CU), and
    // the relative line number for a position (i.e., as adjusted by a //line
    // directive). This is the file/line visible in the final binary (pcfile, pcln,
    // etc).
    func (ctxt *Link) getFileIndexAndLine(xpos src.XPos) (int, int32) {
    	pos := ctxt.InnermostPos(xpos)
    	if !pos.IsKnown() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 892 bytes
    - Viewed (0)
  5. src/debug/dwarf/line.go

    //
    // If this compilation unit has no line table, it returns nil, nil.
    func (d *Data) LineReader(cu *Entry) (*LineReader, error) {
    	if d.line == nil {
    		// No line tables available.
    		return nil, nil
    	}
    
    	// Get line table information from cu.
    	off, ok := cu.Val(AttrStmtList).(int64)
    	if !ok {
    		// cu has no line table.
    		return nil, nil
    	}
    	if off < 0 || off > int64(len(d.line)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/LineAndColumnFromRangeTest.kt

    @RunWith(Parameterized::class)
    class LineAndColumnFromRangeTest(val given: Given) {
    
        data class Given(val range: IntRange, val expected: Pair<Int, Int>)
    
        companion object {
    
            const val text = "line 1\nline 2\nline 3"
    
            @Parameterized.Parameters(name = "{0}")
            @JvmStatic fun testCases(): Iterable<Given> =
                listOf(
                    Given(0..0, 1 to 1),
                    Given(1..1, 1 to 2),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/da/stopwords.txt

    jo
    deres
    efter
    ned
    skulle
    denne
    end
    dette
    mit
    også
    under
    have
    dig
    anden
    hende
    mine
    alt
    meget
    sit
    sine
    vor
    mod
    disse
    hvis
    din
    nogle
    hos
    blive
    mange
    ad
    bliver
    hendes
    været
    thi
    jer
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 564 bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/code.go

    	if prefix1 == "" {
    		prefix1 = s.prefix
    	}
    	if b.Fence == "" {
    		for i, line := range b.Text {
    			// Ignore final empty line (why is it even there?).
    			if i == len(b.Text)-1 && len(line) == 0 {
    				break
    			}
    			// var iline string
    			// is := initialSpaces(line)
    			// if is < 4 {
    			// 	iline = "    " + line
    			// } else {
    			// 	iline = "\t" + line[4:]
    			// }
    			// Indent by 4 spaces.
    			pre := s.prefix
    			if i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/runtime/testdata/testprog/panicprint.go

    type MyUintptr uintptr
    
    func panicCustomComplex64() {
    	panic(MyComplex64(0.11 + 3i))
    }
    
    func panicCustomComplex128() {
    	panic(MyComplex128(32.1 + 10i))
    }
    
    func panicCustomString() {
    	panic(MyString("Panic\nline two"))
    }
    
    func panicCustomBool() {
    	panic(MyBool(true))
    }
    
    func panicCustomInt() {
    	panic(MyInt(93))
    }
    
    func panicCustomInt8() {
    	panic(MyInt8(93))
    }
    
    func panicCustomInt16() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

            for (String line = this.readLine(); line != null && !line.isEmpty(); line = readLine()) {
                lines.add(line);
            }
            return lines;
        }
    
        @Override
        public void write(String line) throws IOException {
            doDisplay(line);
        }
    
        @Override
        public void writeLine(String line) throws IOException {
            doDisplay(line + System.lineSeparator());
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top