Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,963 for bline (0.05 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/go/testdata/vcstest/auth/ormanylines.txt

    handle auth
    
    -- .access --
    {
    	"Username": "aladdin",
    	"Password": "opensesame",
    	"StatusCode": 404,
    	"Message": "line 1\nline 2\nline 3\nline 4\nline 5\nline 6\nline 7\nline 8\nline 9\nline 10\nline 11\nline 12\nline 13\nline 14\nline 15\nline 16"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 250 bytes
    - Viewed (0)
  4. src/cmd/internal/objabi/line.go

    Russ Cox <******@****.***> 1669995570 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 23:10:31 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top