Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 713 for lineB (0.04 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResult.java

            List<String> result = new ArrayList<>();
            List<String> lines = output.getLines();
            int i = 0;
            while (i < lines.size()) {
                String line = lines.get(i);
                if (line.contains(DaemonStartupMessage.STARTING_DAEMON_MESSAGE)) {
                    // Remove the "daemon starting" message
                    i++;
                } else if (line.contains(DaemonStateCoordinator.DAEMON_WILL_STOP_MESSAGE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/go/printer/testdata/expressions.golden

    func same(t, u *Time) bool {
    	// respect source lines in multi-line expressions
    	return t.Year == u.Year &&
    		t.Month == u.Month &&
    		t.Day == u.Day &&
    		t.Hour == u.Hour &&
    		t.Minute == u.Minute &&
    		t.Second == u.Second &&
    		t.Weekday == u.Weekday &&
    		t.ZoneOffset == u.ZoneOffset &&
    		t.Zone == u.Zone
    }
    
    func (p *parser) charClass() {
    	// respect source lines in multi-line expressions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  3. src/go/printer/testdata/expressions.raw

    func same(t, u *Time) bool {
    	// respect source lines in multi-line expressions
    	return t.Year == u.Year &&
    		t.Month == u.Month &&
    		t.Day == u.Day &&
    		t.Hour == u.Hour &&
    		t.Minute == u.Minute &&
    		t.Second == u.Second &&
    		t.Weekday == u.Weekday &&
    		t.ZoneOffset == u.ZoneOffset &&
    		t.Zone == u.Zone
    }
    
    func (p *parser) charClass() {
    	// respect source lines in multi-line expressions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/endtoend_test.go

    	seq := 0
    	hexByLine := map[string]string{}
    	lines := strings.SplitAfter(string(data), "\n")
    Diff:
    	for _, line := range lines {
    		lineno++
    
    		// Ignore include of textflag.h.
    		if strings.HasPrefix(line, "#include ") {
    			continue
    		}
    
    		// Ignore GLOBL.
    		if strings.HasPrefix(line, "GLOBL ") {
    			continue
    		}
    
    		// The general form of a test input line is:
    		//	// comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		key.addr -= l.Mapping.Start
    		key.mappingID = l.Mapping.ID
    	}
    	lines := make([]string, len(l.Line)*3)
    	for i, line := range l.Line {
    		if line.Function != nil {
    			lines[i*2] = strconv.FormatUint(line.Function.ID, 16)
    		}
    		lines[i*2+1] = strconv.FormatInt(line.Line, 16)
    		lines[i*2+2] = strconv.FormatInt(line.Column, 16)
    	}
    	key.lines = strings.Join(lines, "|")
    	return key
    }
    
    type locationKey struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/text/tabwriter/tabwriter_test.go

    				// Write increasing prefixes of that line.
    				for j := 0; j < x; j++ {
    					w.Write(line[:j*2])
    					w.Write([]byte{'\n'})
    				}
    				w.Flush()
    			}
    		})
    	}
    }
    
    func BenchmarkRagged(b *testing.B) {
    	var lines [8][]byte
    	for i, w := range [8]int{6, 2, 9, 5, 5, 7, 3, 8} {
    		// Build a line with w cells.
    		lines[i] = bytes.Repeat([]byte("a\t"), w)
    	}
    	for _, h := range [...]int{10, 100, 1000} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

            static Lookup find(List<String> lines, String anchor) {
                boolean inJavadoc
                List<String> javadoc = []
                for (line in lines) {
                    if (line.trim().startsWith("/**")) {
                        inJavadoc = true
                        javadoc.clear()
                    }
                    if (inJavadoc) {
                        javadoc << line
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/go/printer/testdata/comments.input

    		aligned line
    	*/
    }
    
    func _() {
    	/*	freestanding comment
    		aligned		line
    		aligned line
    		*/
    }
    
    func _() {
    	/*	freestanding comment
    		aligned		line
    		aligned line */
    }
    
    
    func _() {
    	/*
    	   freestanding comment
    	   aligned		line
    	   aligned line
    	*/
    }
    
    func _() {
    	/*
    	   freestanding comment
    	   aligned		line
    	   aligned line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  9. src/internal/profile/graph.go

    // set of corresponding nodes (one per location.Line).
    func CreateNodes(prof *Profile, o *Options) (Nodes, locationMap) {
    	locations := locationMap{make([]Nodes, len(prof.Location)+1), make(map[uint64]Nodes)}
    	nm := make(NodeMap, len(prof.Location))
    	for _, l := range prof.Location {
    		lines := l.Line
    		if len(lines) == 0 {
    			lines = []Line{{}} // Create empty line to include location info.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/go/ast/ast.go

    	// interior blank lines to a single blank line.
    	n := 0
    	for _, line := range lines {
    		if line != "" || n > 0 && lines[n-1] != "" {
    			lines[n] = line
    			n++
    		}
    	}
    	lines = lines[0:n]
    
    	// Add final "" entry to get trailing newline from Join.
    	if n > 0 && lines[n-1] != "" {
    		lines = append(lines, "")
    	}
    
    	return strings.Join(lines, "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top