Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for line1 (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        });
    
        std::vector<std::string> lines;
        lines.push_back("-------- Quantization Summary --------");
        lines.push_back("Number of quantized layers in the model");
        lines.push_back("--------------------------------");
        lines.push_back(
            absl::StrFormat("%s Count/Total", pad_string("Name", name_col_width)));
        lines.push_back("================================");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	var prefix []byte
    	for _, c := range lines[0] {
    		if c != '\t' {
    			break
    		}
    		prefix = append(prefix, byte('\t'))
    	}
    	// Remove prefix from all tabs, fail otherwise.
    	for i := range lines {
    		line := lines[i]
    		// It's OK for the last line to be blank (trailing \n)
    		if i == len(lines)-1 && len(line) <= len(prefix) && bytes.TrimSpace(line) == nil {
    			lines[i] = []byte{}
    			break
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    	metrics.IPTablesRulesTotal.WithLabelValues(string(utiliptables.TableFilter)).Set(float64(proxier.filterRules.Lines()))
    	metrics.IPTablesRulesLastSync.WithLabelValues(string(utiliptables.TableFilter)).Set(float64(proxier.filterRules.Lines()))
    	metrics.IPTablesRulesTotal.WithLabelValues(string(utiliptables.TableNAT)).Set(float64(proxier.natRules.Lines() + skippedNatRules.Lines() - deletedChains))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. src/net/dnsclient_unix_test.go

    }
    
    var updateResolvConfTests = []struct {
    	name    string   // query name
    	lines   []string // resolver configuration lines
    	servers []string // expected name servers
    }{
    	{
    		name:    "golang.org",
    		lines:   []string{"nameserver 8.8.8.8"},
    		servers: []string{"8.8.8.8:53"},
    	},
    	{
    		name:    "",
    		lines:   nil, // an empty resolv.conf should use defaultNS as name servers
    		servers: defaultNS,
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	ended := false       // found non-blank, non-// line, so stopped accepting //go:build lines
    	inSlashStar := false // in /* */ comment
    
    Lines:
    	for len(p) > 0 {
    		line := p
    		if i := bytes.IndexByte(line, '\n'); i >= 0 {
    			line, p = line[:i], p[i+1:]
    		} else {
    			p = p[len(p):]
    		}
    		line = bytes.TrimSpace(line)
    		if len(line) == 0 && !ended { // Blank line
    			// Remember position of most recent blank line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	// gc error messages continue onto additional lines with leading tabs.
    	// Split the output at the beginning of each line that doesn't begin with a tab.
    	// <autogenerated> lines are impossible to match so those are filtered out.
    	var res []string
    	for _, line := range strings.Split(out, "\n") {
    		if strings.HasSuffix(line, "\r") { // remove '\r', output by compiler on windows
    			line = line[:len(line)-1]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    	}
    
    	// For reproducibility, if we are writing a new go line,
    	// and we're not explicitly modifying the toolchain line with 'go get toolchain@something',
    	// and the go version is one that supports switching toolchains,
    	// and the toolchain running right now is newer than the current toolchain line,
    	// then update the toolchain line to record the newer toolchain.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output b1 =
          ops::Add(root.WithOpName("b1"), sw_1.output_true, sw_0.output_false);
    
      Output live0 = ops::Add(root.WithOpName("live0"), a0, a1);
      Output live1 = ops::Add(root.WithOpName("live1"), b0, b1);
    
      Output halfdead0 = ops::Add(root.WithOpName("halfdead0"), a0, b0);
      Output halfdead1 = ops::Add(root.WithOpName("halfdead1"), a1, b1);
    
      std::unique_ptr<DeadnessAnalysis> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	pwd := a.Package.Dir
    	for _, line := range bytes.Split(testlog, []byte("\n")) {
    		if len(line) == 0 {
    			continue
    		}
    		s := string(line)
    		op, name, found := strings.Cut(s, " ")
    		if !found {
    			if cache.DebugTest {
    				fmt.Fprintf(os.Stderr, "testcache: %s: input list malformed (%q)\n", a.Package.ImportPath, line)
    			}
    			return cache.ActionID{}, errBadTestInputs
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    	b.WriteString(f.Preamble)
    	stdout := p.gccDefines(b.Bytes())
    
    	for _, line := range strings.Split(stdout, "\n") {
    		if len(line) < 9 || line[0:7] != "#define" {
    			continue
    		}
    
    		line = strings.TrimSpace(line[8:])
    
    		var key, val string
    		spaceIndex := strings.Index(line, " ")
    		tabIndex := strings.Index(line, "\t")
    
    		if spaceIndex == -1 && tabIndex == -1 {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top