Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,017 for line1 (0.04 sec)

  1. src/go/doc/comment/testdata/code.txt

    More text.
    
          Blocks
        can
    
      have
        blank
          lines.
    -- gofmt --
    Text.
    
    	A tab-indented
    	(no, not eight-space indented)
    	code block and haiku.
    
    More text.
    
    	One space
    	 is
    	  enough
    	   to
    	    start
    	     a
    	      block.
    
    More text.
    
    	    Blocks
    	  can
    
    	have
    	  blank
    	    lines.
    -- markdown --
    Text.
    
    	A tab-indented
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:47 UTC 2022
    - 944 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesErrorHandlingIntegrationTest.groovy

            failure.assertHasLineNumber(lines + 3)
            failure.assertHasCause("There was an error while evaluating a component metadata rule for org.test:projectA:1.0.")
            failure.assertHasCause("No signature of method: WrongRule.foo() is applicable for argument types: () values: []")
        }
    
        def "produces sensible error for invalid component metadata rule" () {
            def lines = buildFile.readLines().size()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	for scan.Scan() {
    		line := strings.TrimSpace(scan.Text())
    		if line == "" || line[0] == '#' {
    			continue
    		}
    		matches := apiFileLineRegexp.FindStringSubmatch(line)
    		if len(matches) == 0 {
    			return nil, fmt.Errorf("%s: malformed line %q", filename, line)
    		}
    		if len(matches) != 5 {
    			return nil, fmt.Errorf("wrong number of matches for line %q", line)
    		}
    		f := APIFeature{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/LineReader.java

      private final char[] buf = cbuf.array();
    
      private final Queue<String> lines = new ArrayDeque<>();
      private final LineBuffer lineBuf =
          new LineBuffer() {
            @Override
            protected void handleLine(String line, String end) {
              lines.add(line);
            }
          };
    
      /** Creates a new instance that will read lines from the given {@code Readable} object. */
      public LineReader(Readable readable) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    	if m := loc.Mapping; m != nil && re.MatchString(m.File) {
    		return nil
    	}
    	var lines []Line
    	for _, ln := range loc.Line {
    		if fn := ln.Function; fn != nil {
    			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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/CharSinkTester.java

        String separator = System.getProperty("line.separator");
        sink.writeLines(lines);
    
        assertContainsExpectedLines(separator);
      }
    
      public void testWriteLines_specificSeparator() throws IOException {
        String separator = "\r\n";
        sink.writeLines(lines, separator);
    
        assertContainsExpectedLines(separator);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ProgressLoggingFixture.groovy

            println "-> CHECKING: $progressContent"
            def lines = progressContent
            def startIndex = lines.indexOf("[START " + operation + "]")
            if (startIndex == -1) {
                return false
            }
            lines = lines[startIndex..<lines.size()]
            lines = lines[0..lines.indexOf("[END " + operation + "]")]
            lines.size() >= 2
        }
    
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/parse.go

    		}
    	}
    
    	newPara(p, s)
    }
    
    func (c *rootBuilder) extend(p *parseState, s line) (line, bool) {
    	panic("root extend")
    }
    
    var news = []func(*parseState, line) (line, bool){
    	newQuote,
    	newATXHeading,
    	newSetextHeading,
    	newHR,
    	newListItem,
    	newHTML,
    	newFence,
    	newPre,
    }
    
    func (s *line) peek() byte {
    	if s.spaces > 0 {
    		return ' '
    	}
    	if s.i >= len(s.text) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. 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)
  10. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPerformanceMonitoringSoakTest.groovy

                    }
                    if (newDaemons > 1) {
                        return true
                    }
                    def lines = gradle.standardOutput.readLines()
                    dataFile << lines[lines.findLastIndexOf { it.startsWith "Starting" }]
                    dataFile << "  " + lines[lines.findLastIndexOf { it.contains "Total time:" }]
                    dataFile << "\n"
                }
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top