Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 120 for output1 (0.16 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      })
      }]>, "all users are TF/TFL operations.">;
    
    def RemoveShapeOnlyCast : Pat<(TFL_CastOp:$output $input),
                                (replaceWithValue $input),
                                [(SameElementType $input, $output),
                                 (AllUsersInTF $output)]>;
    
    
    // Checks if the operand0's rank is one less than operand1's rank.
    def PReluAlphaRankCheck : Constraint<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	cc, err := quotedSplit(cc1)
    	if err != nil {
    		fatalf("split CC: %v", err)
    	}
    	var ccHelp = append(cc, "--help")
    
    	if output, err := exec.Command(ccHelp[0], ccHelp[1:]...).CombinedOutput(); err != nil {
    		outputHdr := ""
    		if len(output) > 0 {
    			outputHdr = "\nCommand output:\n\n"
    		}
    		fatalf("cannot invoke C compiler %q: %v\n\n"+
    			"Go needs a system C compiler for use with cgo.\n"+
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    	}
    	d.dwarfGenerateDebugSyms()
    }
    
    // dwUnitSyms stores input and output symbols for DWARF generation
    // for a given compilation unit.
    type dwUnitSyms struct {
    	// Inputs for a given unit.
    	lineProlog  loader.Sym
    	rangeProlog loader.Sym
    	infoEpilog  loader.Sym
    
    	// Outputs for a given unit.
    	linesyms   []loader.Sym
    	infosyms   []loader.Sym
    	locsyms    []loader.Sym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    			// expected error, got one
    			if *debug {
    				fmt.Printf("%s: %s\n\t%s\n", test.name, test.input, err)
    			}
    		}
    		result := b.String()
    		if result != test.output {
    			t.Errorf("%s: expected\n\t%q\ngot\n\t%q", test.name, test.output, result)
    		}
    	}
    }
    
    func TestExecute(t *testing.T) {
    	testExecute(execTests, nil, t)
    }
    
    var delimPairs = []string{
    	"", "", // default
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_test.go

    	}
    	command = append(command, "-connect")
    	command = append(command, fmt.Sprintf("127.0.0.1:%d", port))
    	cmd := exec.Command(command[0], command[1:]...)
    	cmd.Stdin = nil
    	var output bytes.Buffer
    	cmd.Stdout = &output
    	cmd.Stderr = &output
    	if err := cmd.Start(); err != nil {
    		return nil, nil, err
    	}
    
    	connChan := make(chan any, 1)
    	go func() {
    		tcpConn, err := l.Accept()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	desc string
    }{
    	{1, "EPERM", "operation not permitted"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "device not configured"},
    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  7. pkg/kubelet/status/status_manager_test.go

    			output := mergePodStatus(tc.oldPodStatus(getPodStatus()), tc.newPodStatus(getPodStatus()), tc.hasRunningContainers)
    			if !conditionsEqual(output.Conditions, tc.expectPodStatus.Conditions) || !statusEqual(output, tc.expectPodStatus) {
    				t.Fatalf("unexpected output: %s", cmp.Diff(tc.expectPodStatus, output))
    			}
    		})
    	}
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    			log.Fatal(err)
    		}
    		*flagTmpdir = dir
    		ownTmpDir = true
    		AtExit(func() {
    			os.RemoveAll(*flagTmpdir)
    		})
    	}
    
    	// change our output to temporary object file
    	if err := ctxt.Out.Close(); err != nil {
    		Exitf("error closing output file")
    	}
    	mayberemoveoutfile()
    
    	p := filepath.Join(*flagTmpdir, "go.o")
    	if err := ctxt.Out.Open(p); err != nil {
    		Exitf("cannot create %s: %v", p, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    	filterInputChain          = "filter-input"
    	filterForwardChain        = "filter-forward"
    	filterOutputChain         = "filter-output"
    	filterOutputPostDNATChain = "filter-output-post-dnat"
    	natPreroutingChain        = "nat-prerouting"
    	natOutputChain            = "nat-output"
    	natPostroutingChain       = "nat-postrouting"
    
    	// service dispatch
    	servicesChain       = "services"
    	serviceIPsMap       = "service-ips"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

        return %0 : tensor<1x3xf32>
      }
    // Checks that the entry function is quantized for dot_general. Quantized
    // dot_general outputs an i32 quantized tensor, followed by requantization to
    // i8 quantized tensor.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
Back to top