Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for matchedLines (0.12 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    			if re.MatchString(fn.Name) || re.MatchString(fn.Filename) {
    				continue
    			}
    		}
    		lines = append(lines, ln)
    	}
    	return lines
    }
    
    // matchedLines returns the lines in the location that match
    // the regular expression.
    func (loc *Location) matchedLines(re *regexp.Regexp) []Line {
    	if m := loc.Mapping; m != nil && re.MatchString(m.File) {
    		return loc.Line
    	}
    	var lines []Line
    	for _, ln := range loc.Line {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AnyOrderOutputMatcher.groovy

            unmatchedLines.removeAll('')
    
            expectedLines.each { expectedLine ->
                def matchedLine = unmatchedLines.find { actualLine ->
                    compare(expectedLine, actualLine)
                }
                if (matchedLine) {
                    unmatchedLines.remove(matchedLine)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top