Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for exit_0 (0.18 sec)

  1. src/cmd/link/internal/ld/data.go

    	strnames []string
    )
    
    func addstrdata1(ctxt *Link, arg string) {
    	eq := strings.Index(arg, "=")
    	dot := strings.LastIndex(arg[:eq+1], ".")
    	if eq < 0 || dot < 0 {
    		Exitf("-X flag requires argument of the form importpath.name=value")
    	}
    	pkg := arg[:dot]
    	if ctxt.BuildMode == BuildModePlugin && pkg == "main" {
    		pkg = *flagPluginPath
    	}
    	pkg = objabi.PathToPrefix(pkg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	inDial := make(chan bool)
    	tr := &Transport{
    		Dial: func(network, addr string) (net.Conn, error) {
    			eventLog.Println("dial: blocking")
    			if !<-inDial {
    				return nil, errors.New("main Test goroutine exited")
    			}
    			<-unblockDial
    			return nil, errors.New("nope")
    		},
    	}
    	cl := &Client{Transport: tr}
    	gotres := make(chan bool)
    	req, _ := NewRequest("GET", "http://something.no-network.tld/", nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    bool IsSupportedNonTFOp(Operation* op) {
      return isa<tf_device::ReturnOp, tf_device::ClusterOp, tf_device::LaunchOp,
                 tf_executor::EnterOp, tf_executor::ExitOp, tf_executor::FetchOp,
                 tf_executor::GraphOp, tf_executor::IslandOp,
                 tf_executor::LoopCondOp, tf_executor::MergeOp,
                 tf_executor::NextIterationSinkOp, tf_executor::SwitchNOp,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top