Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,009 for line_ (0.04 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonGreeter.java

                throw new GradleException(prepareMessage(output, startupArgs));
            }
            String[] lines = output.split("\n");
            //Assuming that the diagnostics were printed out to the last line. It's not bullet-proof but seems to be doing fine.
            String lastLine = lines[lines.length - 1];
            return startupCommunication.readDiagnostics(lastLine);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_chatty_success.txt

    # Run chatty tests. Assert on CONT lines.
    go test chatty_test.go -v
    
    # Non-parallel tests should not print CONT.
    ! stdout CONT
    
    # The assertion is condensed into one line so that it precisely matches output,
    # rather than skipping lines and allow rogue CONT lines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 21 18:28:05 UTC 2020
    - 937 bytes
    - Viewed (0)
  3. 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)
  4. pkg/version/version.go

    // of previous Istio components '-- version' output
    func NewBuildInfoFromOldString(oldOutput string) (BuildInfo, error) {
    	res := BuildInfo{}
    
    	lines := strings.Split(oldOutput, "\n")
    	for _, line := range lines {
    		if strings.TrimSpace(line) == "" {
    			continue
    		}
    		fields := strings.SplitN(line, ":", 2)
    		if fields != nil {
    			if len(fields) != 2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/LineProcessor.java

     * <p>{@link #processLine} will be called for each line that is read, and should return {@code
     * false} when you want to stop processing.
     *
     * @author Miles Barr
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public interface LineProcessor<T extends @Nullable Object> {
    
      /**
       * This method will be called once for each line.
       *
       * @param line the line read from the input, without delimiter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4XCTest.groovy

                                When you write a string that spans multiple
                                lines make sure you start its content on a
                                line all of its own, and end it with three
                                quotes also on a line of their own.
                                Multi-line strings also let you write "quote marks"
                                freely inside your strings, which is great!
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/web/api.go

    		}
    	}
    
    	var detail strings.Builder
    	for i, line := range strings.Split(s, "\n") {
    		if strings.TrimSpace(line) == "" {
    			break // Stop at the first blank line.
    		}
    		if i > 0 {
    			detail.WriteString("\n\t")
    		}
    		if i >= maxErrorDetailLines {
    			detail.WriteString("[Truncated: too many lines.]")
    			break
    		}
    		if detail.Len()+len(line) > maxErrorDetailBytes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/self_test.go

    	}
    }
    
    func runbench(b *testing.B, path string, ignoreFuncBodies, writeInfo bool) {
    	files, err := pkgFiles(path)
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	// determine line count
    	var lines uint
    	for _, f := range files {
    		lines += f.EOF.Line()
    	}
    
    	b.ResetTimer()
    	start := time.Now()
    	for i := 0; i < b.N; i++ {
    		conf := Config{
    			IgnoreFuncBodies: ignoreFuncBodies,
    			Importer:         defaultImporter(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:39:00 UTC 2023
    - 2.8K 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