Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for bline (0.05 sec)

  1. src/go/printer/nodes.go

    	if printBlank {
    		p.print(blank)
    	}
    	xline := p.pos.Line // before the operator (it may be on the next line!)
    	yline := p.lineFor(x.Y.Pos())
    	p.setPos(x.OpPos)
    	p.print(x.Op)
    	if xline != yline && xline > 0 && yline > 0 {
    		// at least one line break, but respect an extra empty line
    		// in the source
    		if p.linebreak(yline, 1, ws, true) > 0 {
    			ws = ignore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. src/cmd/internal/testdir/testdir_test.go

    	// Split the output at the beginning of each line that doesn't begin with a tab.
    	// <autogenerated> lines are impossible to match so those are filtered out.
    	var res []string
    	for _, line := range strings.Split(out, "\n") {
    		if strings.HasSuffix(line, "\r") { // remove '\r', output by compiler on windows
    			line = line[:len(line)-1]
    		}
    		if strings.HasPrefix(line, "\t") {
    			res[len(res)-1] += "\n" + line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withProblem("Script 'script.gradle': line 10: registration of listener on 'Gradle.buildFinished' is unsupported")
                withProblem("Script 'script.gradle': line 13: registration of listener on 'Gradle.buildFinished' is unsupported")
                withProblem("Script 'script.gradle': line 4: registration of listener on 'Gradle.buildFinished' is unsupported")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/go/build/build.go

    	ended := false       // found non-blank, non-// line, so stopped accepting //go:build lines
    	inSlashStar := false // in /* */ comment
    
    Lines:
    	for len(p) > 0 {
    		line := p
    		if i := bytes.IndexByte(line, '\n'); i >= 0 {
    			line, p = line[:i], p[i+1:]
    		} else {
    			p = p[len(p):]
    		}
    		line = bytes.TrimSpace(line)
    		if len(line) == 0 && !ended { // Blank line
    			// Remember position of most recent blank line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. src/bufio/bufio_test.go

    	}
    	data = data[len(line):]
    	line, isPrefix, err = l.ReadLine()
    	if isPrefix || !bytes.Equal(line, data[:minReadBufferSize/2]) || err != nil {
    		t.Errorf("bad result for third line: got %q want %q %v", line, data[:minReadBufferSize/2], err)
    	}
    	line, isPrefix, err = l.ReadLine()
    	if isPrefix || err == nil {
    		t.Errorf("expected no more lines: %x %s", line, err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  6. src/regexp/testdata/testregex.c

    T("\n");
    T("SYNOPSIS\n");
    T("  testregex [ options ]\n");
    T("\n");
    T("DESCRIPTION\n");
    T("  testregex reads regex(3) test specifications, one per line, from the\n");
    T("  standard input and writes one output line for each failed test. A\n");
    T("  summary line is written after all tests are done. Each successful\n");
    T("  test is run again with REG_NOSUB. Unsupported features are noted\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/manual.css

    	clear: both;
    	margin: 1.25em 0 1.1875em;
    	height: 0;
    }
    
    /* Helpful Typography Defaults */
    em,
    i {
    	font-style: italic;
    	line-height: inherit;
    }
    
    strong,
    b {
    	font-weight: bold;
    	line-height: inherit;
    }
    
    small {
    	font-size: 60%;
    	line-height: inherit;
    }
    
    code {
    	font-family: "Droid Sans Mono", "DejaVu Sans Mono", monospace;
    	font-weight: normal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. src/go/printer/testdata/parser.go

    func (p *parser) next() {
    	p.leadComment = nil
    	p.lineComment = nil
    	line := p.file.Line(p.pos) // current line
    	p.next0()
    
    	if p.tok == token.COMMENT {
    		var comment *ast.CommentGroup
    		var endline int
    
    		if p.file.Line(p.pos) == line {
    			// The comment is on same line as the previous token; it
    			// cannot be a lead comment but may be a line comment.
    			comment, endline = p.consumeCommentGroup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/minio-dashboard.json

                "axisCenteredZero": false,
                "axisColorMode": "text",
                "axisLabel": "",
                "axisPlacement": "auto",
                "barAlignment": 0,
                "drawStyle": "line",
                "fillOpacity": 10,
                "gradientMode": "none",
                "hideFrom": {
                  "legend": false,
                  "tooltip": false,
                  "viz": false
                },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    // line comments.
    //
    // A lead comment is a comment group that starts and ends in a
    // line without any other tokens and that is followed by a non-comment
    // token on the line immediately after the comment group.
    //
    // A line comment is a comment group that follows a non-comment
    // token on the same line, and that has no tokens after it on the line
    // where it ends.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top