Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 713 for lineB (2.08 sec)

  1. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

            [Insufficient.LINE_METRIC_COVERED_RATIO]                    | 'line metric with covered ratio'                                         | 'lines covered ratio is 1.0, but expected maximum is 0.5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. ci/official/utilities/extract_resultstore_links.py

          url_lines['start'] = i
        current_url = url
    
      previous_end_line = None
      for url, lines in result_store_links.items():
        lines['status'] = InvokeStatus.passed  # default to passed
        start_line = lines['start']
        end_line = lines.get('end', lines.get('next_url', len(log_lines))) - 1
        k = end_line
        while k > start_line:
          backtrack_line = log_lines[k]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 17:50:27 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/generate/generate.go

    	if len(line) > 0 && line[len(line)-1] == '\r' {
    		line = line[:len(line)-1]
    	}
    	// One (possibly quoted) word per iteration.
    Words:
    	for {
    		line = strings.TrimLeft(line, " \t")
    		if len(line) == 0 {
    			break
    		}
    		if line[0] == '"' {
    			for i := 1; i < len(line); i++ {
    				c := line[i] // Only looking for ASCII so this is OK.
    				switch c {
    				case '\\':
    					if i+1 == len(line) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/io/CharStreams.java

       * @return a mutable {@link List} containing all the lines
       * @throws IOException if an I/O error occurs
       */
      public static List<String> readLines(Readable r) throws IOException {
        List<String> result = new ArrayList<>();
        LineReader lineReader = new LineReader(r);
        String line;
        while ((line = lineReader.readLine()) != null) {
          result.add(line);
        }
        return result;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

                long id = 0;
                String line = null;
                while ((line = reader.readLine()) != null) {
                    // Remove comments
                    final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim();
    
                    // Skip empty lines or comment lines
                    if (replacedLine.length() == 0) {
                        if (updater != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    	i := 0
    	for ; ; i++ {
    		if i >= len(line)-len(prefix) {
    			return line, 0, false
    		}
    		if line[i] == '[' && line[i:i+len(prefix)] == prefix {
    			break
    		}
    	}
    
    	// Scan to ].
    	j := i + len(prefix)
    	for j < len(line) && line[j] != ']' {
    		j++
    	}
    	if j >= len(line) {
    		return line, 0, false
    	}
    
    	// Parse id.
    	idstr := line[i+len(prefix) : j]
    	if len(idstr) >= 3 && idstr[:2] == "0x" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/term/terminal.go

    	copy(t.line[t.pos+1:], t.line[t.pos:])
    	t.line[t.pos] = key
    	if t.echo {
    		t.writeLine(t.line[t.pos:])
    	}
    	t.pos++
    	t.moveCursorToPos(t.pos)
    }
    
    func (t *Terminal) writeLine(line []rune) {
    	for len(line) != 0 {
    		remainingOnLine := t.termWidth - t.cursorX
    		todo := len(line)
    		if todo > remainingOnLine {
    			todo = remainingOnLine
    		}
    		t.queue(line[:todo])
    		t.advanceCursor(visualLength(line[:todo]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/amd64/versions_test.go

    	success := false
    	lines := strings.Split(string(out), "\n")
    	if len(lines) == 2 {
    		success = lines[0] == "PASS" && lines[1] == ""
    	} else if len(lines) == 3 {
    		success = lines[0] == "PASS" &&
    			strings.HasPrefix(lines[1], "coverage") && lines[2] == ""
    	}
    	if !success {
    		t.Fatalf("test reported error: %s lines=%+v", string(out), lines)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:19:15 UTC 2022
    - 10.9K bytes
    - Viewed (0)
Back to top