Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,620 for bline (0.06 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java

                String line;
                final RobotsTxt robotsTxt = new RobotsTxt();
                final List<Directive> currentDirectiveList = new ArrayList<>();
                boolean isGroupRecodeStarted = false;
                while ((line = reader.readLine()) != null) {
                    line = stripComment(line).trim();
                    if (StringUtil.isEmpty(line)) {
                        continue;
                    }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/go/printer/printer.go

    			if isBlank(line) {
    				lines[1+i] = "" // range starts with lines[1]
    			} else {
    				if !prefixSet {
    					prefix = line
    					prefixSet = true
    				}
    				prefix = commonPrefix(prefix, line)
    			}
    
    		}
    	}
    	// If we don't have a prefix yet, consider the last line.
    	if !prefixSet {
    		line := lines[len(lines)-1]
    		prefix = commonPrefix(line, line)
    	}
    
    	/*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/quote.go

    }
    
    func trimQuote(s line) (line, bool) {
    	t := s
    	t.trimSpace(0, 3, false)
    	if !t.trim('>') {
    		return s, false
    	}
    	t.trimSpace(0, 1, true)
    	return t, true
    }
    
    type quoteBuilder struct{}
    
    func newQuote(p *parseState, s line) (line, bool) {
    	if line, ok := trimQuote(s); ok {
    		p.addBlock(new(quoteBuilder))
    		return line, true
    	}
    	return s, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/LinePrefixingStyledTextOutputTest.groovy

    [PREFIX]2nd line - still 2nd line
    [PREFIX]3rd line""")
        }
    
        def "allows not prefixing first line"() {
            LinePrefixingStyledTextOutput output = new LinePrefixingStyledTextOutput(styledTextOutput, "[PREFIX]", false)
    
            when:
            output.println("1st line")
            output.text("2nd line")
            output.text(" - still 2nd line")
            output.println()
            output.text("3rd line")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/legacy_java_profile.go

    	for {
    		line, err := r.ReadString('\n')
    		if err != nil {
    			if err != io.EOF {
    				return err
    			}
    			if line == "" {
    				break
    			}
    		}
    
    		if line = strings.TrimSpace(line); line == "" {
    			continue
    		}
    
    		jloc := javaLocationRx.FindStringSubmatch(line)
    		if len(jloc) != 3 {
    			continue
    		}
    		addr, err := strconv.ParseUint(jloc[1], 16, 64)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/internal/src/pos.go

    func (p Pos) RelFilename() string { return p.base.Filename() }
    
    // RelLine returns the line number relative to the position's base.
    func (p Pos) RelLine() uint {
    	b := p.base
    	if b.Line() == 0 {
    		// base line is unknown => relative line is unknown
    		return 0
    	}
    	return b.Line() + (p.Line() - b.Pos().Line())
    }
    
    // RelCol returns the column number relative to the position's base.
    func (p Pos) RelCol() uint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/tests/go122-annotations.test

    	pc=4538792 func=45 file=42 line=258
    	pc=4814277 func=37 file=36 line=125
    	pc=4815228 func=38 file=31 line=27
    Stack id=22 nframes=3
    	pc=4642148 func=46 file=47 line=81
    	pc=4816326 func=48 file=47 line=87
    	pc=4815941 func=34 file=31 line=50
    Stack id=11 nframes=1
    	pc=4815364 func=38 file=31 line=34
    Stack id=5 nframes=4
    	pc=4547349 func=49 file=50 line=42
    	pc=4538780 func=45 file=42 line=257
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/SampleIncludeProcessor.java

                    .filter(line -> !sampleTagRegex.matcher(line).matches())
                    .collect(Collectors.joining("\n"));
                result.append(sampleWithoutTags);
            } else {
                String activeTag = null;
                try (BufferedReader reader = new BufferedReader(new StringReader(source))) {
                    String line;
                    while ((line = reader.readLine()) != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 10:45:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. maven-jline/src/main/java/org/apache/maven/jline/MessageUtils.java

     * under the License.
     */
    package org.apache.maven.jline;
    
    import org.apache.maven.api.services.MessageBuilder;
    import org.apache.maven.api.services.MessageBuilderFactory;
    import org.jline.jansi.AnsiConsole;
    import org.jline.reader.LineReader;
    import org.jline.reader.LineReaderBuilder;
    import org.jline.terminal.Terminal;
    import org.jline.terminal.TerminalBuilder;
    
    public class MessageUtils {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 13:48:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-annotations-stress.test

    	pc=4803589 func=114 file=113 line=45
    Stack id=24 nframes=7
    	pc=4634510 func=146 file=116 line=223
    	pc=4634311 func=117 file=118 line=240
    	pc=4633765 func=119 file=118 line=216
    	pc=4633083 func=120 file=118 line=131
    	pc=4764601 func=121 file=122 line=152
    	pc=4765335 func=123 file=122 line=238
    	pc=4804612 func=124 file=113 line=70
    Stack id=43 nframes=2
    	pc=4804022 func=112 file=113 line=67
    	pc=4803566 func=114 file=113 line=44
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top