Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,017 for line1 (0.04 sec)

  1. hack/make-rules/test.sh

      {
        # The combined coverage profile needs to start with a line indicating which
        # coverage mode was used (set, count, or atomic). This line is included in
        # each of the coverage profiles generated when running 'go test -cover', but
        # we strip these lines out when combining so that there's only one.
        echo "mode: ${KUBE_COVERMODE}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/go/doc/testdata/testing.go

    			}
    		} else {
    			file = "???"
    			line = 1
    		}
    		s = fmt.Sprintf("%s:%d: %s", file, line, s)
    	}
    	s = "\t" + s // Every line is indented at least one tab.
    	n := len(s)
    	if n > 0 && s[n-1] != '\n' {
    		s += "\n"
    		n++
    	}
    	for i := 0; i < n-1; i++ { // -1 to avoid final newline
    		if s[i] == '\n' {
    			// Second and subsequent lines are indented an extra tab.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/diagnostics/DaemonLogFileUtils.java

        /**
         * Reads the last {@code tailSize} lines of the daemon log file and returns them as a single string.
         *
         * @param file the daemon log
         * @param tailSize the length of tail
         * @return the tail of the log or a special {@code "<<empty>>"} string if the log is empty
         */
        static String tail(File file, int tailSize) throws IOException {
            try (Stream<String> lines = Files.lines(file.toPath(), StandardCharsets.UTF_8)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/transforms/init_text_file_to_import.cc

        }
    
        // Splits into lines.
        SmallVector<StringRef, 8> lines;
        file->getBuffer().split(lines, "\n", -1, false);
        // The resize method is used since split operator puts tail value in the end
        // without splitting the leftovers.
        if (op.getVocabSize() != -1) lines.resize(op.getVocabSize());
    
        // Map each line to line number, starting from zero.
        SmallVector<int64_t, 8> line_nums;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

        filter(FixCrLfFilter)
        filter(ReplaceTokens, tokens: [copyright: '2009', version: '2.3.1'])
        // Use a closure to filter each line
        filter { String line ->
            "[$line]"
        }
        // Use a closure to remove lines
        filter { String line ->
            line.startsWith('-') ? null : line
        }
        filteringCharset = 'UTF-8'
    }
    // end::filter-files[]
    
    // tag::file-permissions[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

                return clazz.getResource(RESOURCE)
                    .readText()
                    .split('\n')
                    .filter { it.isNotBlank() }
                    .map { line -> line.substring(7, line.length - 2) }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 22 10:58:31 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/istioctl_metrics_test.go

    	//        server        0.182        0.000         40ms         74ms         97ms
    	//
    	lines := strings.Split(output, "\n")
    	if len(lines) != 3 {
    		t.Logf("Expected 2 lines of output, got %q", output)
    		return errors.New("unexpected output (incorrect number of lines)")
    	}
    	fields := strings.Fields(lines[1])
    	if len(fields) != 6 {
    		t.Logf("Expected 6 columns, got %#v", fields)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. 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)
  10. pkg/log/config_test.go

    		"",
    	}
    
    	if len(lines) > len(patterns) {
    		t.Errorf("Expecting %d lines of output, but got %d", len(patterns), len(lines))
    
    		for i := len(patterns); i < len(lines); i++ {
    			t.Errorf("  Extra line of output: %s", lines[i])
    		}
    	}
    
    	for i, pat := range patterns {
    		t.Run(strconv.Itoa(i), func(t *testing.T) {
    			match, _ := regexp.MatchString(pat, lines[i])
    			if !match {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top