Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 556 for endLine (0.18 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/LightTreeUtil.kt

                            i++
                            column++
                        }
                    }
    
                    check(startLine >= 0 && startColumn >= 0 && endLine >= 0 && endColumn >= 0)
                    return LineColumnInfo(startLine, startColumn, endLine, endColumn)
                }
            }
        }
    }
    
    
    internal
    fun FlyweightCapableTreeStructure<LighterASTNode>.print(
        node: LighterASTNode = root,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller_debug.go

    		"ExecutingRequests",  // 6
    		"DispatchedRequests", // 7
    		"RejectedRequests",   // 8
    		"TimedoutRequests",   // 9
    		"CancelledRequests",  // 10
    	}
    	tabPrint(tabWriter, rowForHeaders(columnHeaders))
    	endLine(tabWriter)
    	plNames := make([]string, 0, len(cfgCtlr.priorityLevelStates))
    	for plName := range cfgCtlr.priorityLevelStates {
    		plNames = append(plNames, plName)
    	}
    	sort.Strings(plNames)
    	for i := range plNames {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/list.go

    	pos := p.pos()
    
    	// list can have wrong pos b/c extend dance.
    	pos.EndLine = blocks[len(blocks)-1].Pos().EndLine
    Loose:
    	for i, c := range blocks {
    		c := c.(*Item)
    		if i+1 < len(blocks) {
    			if blocks[i+1].Pos().StartLine-c.EndLine > 1 {
    				b.loose = true
    				break Loose
    			}
    		}
    		for j, d := range c.Blocks {
    			endLine := d.Pos().EndLine
    			if j+1 < len(c.Blocks) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/para.go

    		if !ok {
    			break
    		}
    		s = s[skipSpace(s, end):]
    	}
    
    	if s == "" {
    		return &Empty{p.pos()}
    	}
    
    	// Recompute EndLine because a line of b.text
    	// might have been taken away to start a table.
    	pos := p.pos()
    	pos.EndLine = pos.StartLine + len(b.text) - 1
    	return &Paragraph{
    		pos,
    		p.newText(pos, s),
    	}
    }
    
    func newPara(p *parseState, s line) (line, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/MappedPosition.java

        }
    
        @Override
        public Optional<Integer> startColumn() {
            return delegate.startColumn();
        }
    
        @Override
        public Optional<Integer> endLine() {
            return delegate.endLine();
        }
    
        @Override
        public Optional<Integer> endColumn() {
            return delegate.endColumn();
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. src/go/ast/import.go

    	begSpecs := pos[0].Start
    	endSpecs := pos[len(pos)-1].End
    	beg := fset.File(begSpecs).LineStart(lineAt(fset, begSpecs))
    	endLine := lineAt(fset, endSpecs)
    	endFile := fset.File(endSpecs)
    	var end token.Pos
    	if endLine == endFile.LineCount() {
    		end = endSpecs
    	} else {
    		end = endFile.LineStart(endLine + 1) // beginning of next line
    	}
    	first := len(f.Comments)
    	last := -1
    	for i, g := range f.Comments {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. tools/docker-builder/dockerfile/parse.go

    		return nil, err
    	}
    
    	var ret []Command
    	for _, child := range res.AST.Children {
    		cmd := Command{
    			Cmd:       child.Value,
    			Original:  child.Original,
    			StartLine: child.StartLine,
    			EndLine:   child.EndLine,
    			Flags:     child.Flags,
    		}
    
    		// Only happens for ONBUILD
    		if child.Next != nil && len(child.Next.Children) > 0 {
    			cmd.SubCmd = child.Next.Children[0].Value
    			child = child.Next.Children[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    			if pkg != "" && pkg != prevPkg {
    				h := stdlibPackageHeading(pkg, lastBlock(doc).Pos().EndLine)
    				doc.Blocks = append(doc.Blocks, h)
    			}
    			prevPkg = pkg
    			// Put a blank line between the current and new blocks, so that the end
    			// of a file acts as a blank line.
    			lastLine := lastBlock(doc).Pos().EndLine
    			delta := lastLine + 2 - newdoc.Blocks[0].Pos().StartLine
    			for _, b := range newdoc.Blocks {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/go/printer/testdata/parser.go

    func (p *parser) consumeComment() (comment *ast.Comment, endline int) {
    	// /*-style comments may end on a different line than where they start.
    	// Scan the comment for '\n' chars and adjust endline accordingly.
    	endline = p.file.Line(p.pos)
    	if p.lit[1] == '*' {
    		// don't use range here - no need to decode Unicode code points
    		for i := 0; i < len(p.lit); i++ {
    			if p.lit[i] == '\n' {
    				endline++
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/table.go

    }
    
    func (t *Table) printMarkdown(buf *bytes.Buffer, s mdState) {
    }
    
    func (b *tableBuilder) build(p buildState) Block {
    	pos := p.pos()
    	pos.StartLine-- // builder does not count header
    	pos.EndLine = pos.StartLine + 1 + len(b.rows)
    	t := &Table{
    		Position: pos,
    	}
    	width := tableCount(b.hdr)
    	t.Header = b.parseRow(p, b.hdr, pos.StartLine, width)
    	t.Align = b.parseAlign(b.delim, width)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top