Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,017 for line1 (0.04 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutputTest.groovy

            System.setProperty("line.separator", "\n")
            def output = output()
    
            when:
            output.text("\r")
            output.text("\n")
    
            then:
            result.toString() == "{eol}"
        }
    
        def "Carriage return isn't detected as new line [#type]"() {
            System.setProperty("line.separator", eol)
            def output = output()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/internal/cpu/cpu_loong64.go

    // license that can be found in the LICENSE file.
    
    //go:build loong64
    
    package cpu
    
    // CacheLinePadSize is used to prevent false sharing of cache lines.
    // We choose 64 because Loongson 3A5000 the L1 Dcache is 4-way 256-line 64-byte-per-line.
    const CacheLinePadSize = 64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 20:17:08 UTC 2022
    - 398 bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/ExecutionGraph.java

    public class ExecutionGraph {
        // Execution 1,2,3, starting from 1
        int index;
        String title;
        List<Line> data;
    
        public ExecutionGraph(int index, Line... lines) {
            this.index = index;
            this.title = "Execution " + index + " (ms)";
            this.data = Arrays.asList(lines);
        }
    
        String getData() {
            return JsonOutput.toJson(data);
        }
    
        String getTicks() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug_lines_test.go

    	dumpLineNum := 0
    	var gotStmts []int
    	var gotStacks [][]int
    	for dump.Scan() {
    		line := dump.Text()
    		dumpLineNum++
    		matches := inlineLine.FindStringSubmatch(line)
    		if len(matches) == 2 {
    			stmt, err := strconv.ParseInt(matches[1], 10, 32)
    			if err != nil {
    				t.Fatalf("Expected to parse a line number but saw %s instead on dump line #%d, error %v", matches[1], dumpLineNum, err)
    			}
    			if testing.Verbose() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		key.addr -= l.Mapping.Start
    		key.mappingID = l.Mapping.ID
    	}
    	lines := make([]string, len(l.Line)*3)
    	for i, line := range l.Line {
    		if line.Function != nil {
    			lines[i*2] = strconv.FormatUint(line.Function.ID, 16)
    		}
    		lines[i*2+1] = strconv.FormatInt(line.Line, 16)
    		lines[i*2+2] = strconv.FormatInt(line.Column, 16)
    	}
    	key.lines = strings.Join(lines, "|")
    	return key
    }
    
    type locationKey struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/text/tabwriter/tabwriter_test.go

    				// Write increasing prefixes of that line.
    				for j := 0; j < x; j++ {
    					w.Write(line[:j*2])
    					w.Write([]byte{'\n'})
    				}
    				w.Flush()
    			}
    		})
    	}
    }
    
    func BenchmarkRagged(b *testing.B) {
    	var lines [8][]byte
    	for i, w := range [8]int{6, 2, 9, 5, 5, 7, 3, 8} {
    		// Build a line with w cells.
    		lines[i] = bytes.Repeat([]byte("a\t"), w)
    	}
    	for _, h := range [...]int{10, 100, 1000} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                final String[] lines = value.split("[\r\n]");
                for (final String line : lines) {
                    if (StringUtil.isNotBlank(line)) {
                        final int pos = line.indexOf('=');
                        if (pos == 0) {
                            paramMap.put("unknown." + (unknownKey + 1), line.substring(pos + 1).trim());
                            unknownKey++;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

            static Lookup find(List<String> lines, String anchor) {
                boolean inJavadoc
                List<String> javadoc = []
                for (line in lines) {
                    if (line.trim().startsWith("/**")) {
                        inJavadoc = true
                        javadoc.clear()
                    }
                    if (inJavadoc) {
                        javadoc << line
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top