Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 470 for line_ (0.04 sec)

  1. src/net/http/cookie.go

    func readCookies(h Header, filter string) []*Cookie {
    	lines := h["Cookie"]
    	if len(lines) == 0 {
    		return []*Cookie{}
    	}
    
    	cookies := make([]*Cookie, 0, len(lines)+strings.Count(lines[0], ";"))
    	for _, line := range lines {
    		line = textproto.TrimString(line)
    
    		var part string
    		for len(line) > 0 { // continue since we have rest
    			part, line, _ = strings.Cut(line, ";")
    			part = textproto.TrimString(part)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. JavadocStyleGuide.md

    - The first line that begins with an `@` character ends the description; you cannot continue the description following block tags.
    - Block tags must be added in order.
    - The last line contains the end-comment delimiter ( `*/`).
    
    So lines won't wrap, limit any doc-comment lines to 120 characters.
    
    ### 1.1.2 HTML
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    		f.Toolchain.Syntax.markRemoved()
    		f.Toolchain = nil
    	}
    }
    
    // AddGodebug sets the first godebug line for key to value,
    // preserving any existing comments for that line and removing all
    // other godebug lines for key.
    //
    // If no line currently exists for key, AddGodebug adds a new line
    // at the end of the last godebug block.
    func (f *WorkFile) AddGodebug(key, value string) error {
    	need := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/go/printer/printer_test.go

    // before empty lines.
    func TestIssue5945(t *testing.T) {
    	const orig = `
    package p   // line 2
    func f() {} // line 3
    
    var x, y, z int
    
    
    func g() { // line 8
    }
    `
    
    	const want = `//line src.go:2
    package p
    
    //line src.go:3
    func f() {}
    
    var x, y, z int
    
    //line src.go:8
    func g() {
    }
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParser.java

    public class DaemonContextParser {
        @Nullable
        public static DaemonContext parseFromFile(DaemonLogFile log, GradleVersion version) {
            try (Stream<String> lines = log.lines()) {
                return lines.map(line -> parseFrom(line, version)).filter(Objects::nonNull).findFirst().orElse(null);
            } catch (IOException | UncheckedIOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 09:22:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/go/ast/import.go

    			for _, c := range g.cg.List {
    				if g.left {
    					c.Slash = pos[i].Start - 1
    				} else {
    					// An import spec can have both block comment and a line comment
    					// to its right. In that case, both of them will have the same pos.
    					// But while formatting the AST, the line comment gets moved to
    					// after the block comment.
    					c.Slash = pos[i].End
    				}
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    			l := sample.Location[i]
    			lines := l.Line
    			if len(lines) == 0 {
    				lines = []profile.Line{{}} // Create empty line to include location info.
    			}
    			for lidx := len(lines) - 1; lidx >= 0; lidx-- {
    				nodeMap := parentNodeMap[parent]
    				if nodeMap == nil {
    					nodeMap = make(NodeMap)
    					parentNodeMap[parent] = nodeMap
    				}
    				n := nodeMap.findOrInsertLine(l, lines[lidx], o)
    				if n == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. src/cmd/vet/vet_test.go

    	// gc error messages continue onto additional lines with leading tabs.
    	// 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") {
    		line = strings.TrimSuffix(line, "\r") // normalize Windows output
    		if strings.HasPrefix(line, "\t") {
    			res[len(res)-1] += "\n" + line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/support.go

    		f = &fileInfo{file: s.fset.AddFile(file, -1, maxlines)}
    		s.files[file] = f
    	}
    
    	if line > maxlines {
    		line = 1
    	}
    	if line > f.lastline {
    		f.lastline = line
    	}
    
    	// Return a fake position assuming that f.file consists only of newlines.
    	return token.Pos(f.file.Base() + line - 1)
    }
    
    func (s *fakeFileSet) setLines() {
    	fakeLinesOnce.Do(func() {
    		fakeLines = make([]int, maxlines)
    		for i := range fakeLines {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top