Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 104 for U_comm (0.13 sec)

  1. src/syscall/zerrors_linux_arm64.go

    	EBADSLT         = Errno(0x39)
    	EBFONT          = Errno(0x3b)
    	EBUSY           = Errno(0x10)
    	ECANCELED       = Errno(0x7d)
    	ECHILD          = Errno(0xa)
    	ECHRNG          = Errno(0x2c)
    	ECOMM           = Errno(0x46)
    	ECONNABORTED    = Errno(0x67)
    	ECONNREFUSED    = Errno(0x6f)
    	ECONNRESET      = Errno(0x68)
    	EDEADLK         = Errno(0x23)
    	EDEADLOCK       = Errno(0x23)
    	EDESTADDRREQ    = Errno(0x59)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 68.6K bytes
    - Viewed (0)
  2. src/syscall/zerrors_linux_ppc64le.go

    	EBADSLT         = Errno(0x39)
    	EBFONT          = Errno(0x3b)
    	EBUSY           = Errno(0x10)
    	ECANCELED       = Errno(0x7d)
    	ECHILD          = Errno(0xa)
    	ECHRNG          = Errno(0x2c)
    	ECOMM           = Errno(0x46)
    	ECONNABORTED    = Errno(0x67)
    	ECONNREFUSED    = Errno(0x6f)
    	ECONNRESET      = Errno(0x68)
    	EDEADLK         = Errno(0x23)
    	EDEADLOCK       = Errno(0x3a)
    	EDESTADDRREQ    = Errno(0x59)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_loong64.go

    	EBADSLT         = Errno(0x39)
    	EBFONT          = Errno(0x3b)
    	EBUSY           = Errno(0x10)
    	ECANCELED       = Errno(0x7d)
    	ECHILD          = Errno(0xa)
    	ECHRNG          = Errno(0x2c)
    	ECOMM           = Errno(0x46)
    	ECONNABORTED    = Errno(0x67)
    	ECONNREFUSED    = Errno(0x6f)
    	ECONNRESET      = Errno(0x68)
    	EDEADLK         = Errno(0x23)
    	EDEADLOCK       = Errno(0x23)
    	EDESTADDRREQ    = Errno(0x59)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  4. src/go/printer/nodes.go

    			p.print(token.SEMICOLON)
    		}
    		p.print(blank)
    		p.stmt(s.Assign, false)
    		p.print(blank)
    		p.block(s.Body, 0)
    
    	case *ast.CommClause:
    		if s.Comm != nil {
    			p.print(token.CASE, blank)
    			p.stmt(s.Comm, false)
    		} else {
    			p.print(token.DEFAULT)
    		}
    		p.setPos(s.Colon)
    		p.print(token.COLON)
    		p.stmtList(s.Body, 1, nextIsRBrace)
    
    	case *ast.SelectStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/go/ast/ast.go

    		Body   *BlockStmt // CaseClauses only
    	}
    
    	// A CommClause node represents a case of a select statement.
    	CommClause struct {
    		Case  token.Pos // position of "case" or "default" keyword
    		Comm  Stmt      // send or receive statement; nil means default case
    		Colon token.Pos // position of ":"
    		Body  []Stmt    // statement list; or nil
    	}
    
    	// A SelectStmt node represents a select statement.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    		}},
    		{`package p14; func _() { select{} }`, []string{
    			"file:", "func:",
    		}},
    		{`package p15; func _(c chan int) { select{ case <-c: } }`, []string{
    			"file:", "func:c", "comm:",
    		}},
    		{`package p16; func _(c chan int) { select{ case i := <-c: x := i; _ = x} }`, []string{
    			"file:", "func:c", "comm:i x",
    		}},
    		{`package p17; func _() { for{} }`, []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // `external_operands` and `external_outputs` to/from device/host.  Inserts
    // ops at `insertion_point` and uses `compilation_key` and `device_ordinal` when
    // creating comm ops.
    LogicalResult MoveToHostSingleCluster(
        ArrayRef<Operation*> clustered_ops, ArrayRef<Value> external_operands,
        ArrayRef<Value> external_outputs,
        llvm::SmallVector<IRMapping>& core_to_mapping,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/order.go

    	// case (if p were nil, then the timing of the fault would
    	// give this away).
    	case ir.OSELECT:
    		n := n.(*ir.SelectStmt)
    		t := o.markTemp()
    		for _, ncas := range n.Cases {
    			r := ncas.Comm
    			ir.SetPos(ncas)
    
    			// Append any new body prologue to ninit.
    			// The next loop will insert ninit into nbody.
    			if len(ncas.Init()) != 0 {
    				base.Fatalf("order select ninit")
    			}
    			if r == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. src/go/types/api_test.go

    		}},
    		{`package p14; func _() { select{} }`, []string{
    			"file:", "func:",
    		}},
    		{`package p15; func _(c chan int) { select{ case <-c: } }`, []string{
    			"file:", "func:c", "comm:",
    		}},
    		{`package p16; func _(c chan int) { select{ case i := <-c: x := i; _ = x} }`, []string{
    			"file:", "func:c", "comm:i x",
    		}},
    		{`package p17; func _() { for{} }`, []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	cid[1] = byte(sa.CID >> 8)
    	sa.raw.Bdaddr_type = sa.AddrType
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrL2, nil
    }
    
    // SockaddrRFCOMM implements the Sockaddr interface for AF_BLUETOOTH type sockets
    // using the RFCOMM protocol.
    //
    // Server example:
    //
    //	fd, _ := Socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM)
    //	_ = unix.Bind(fd, &unix.SockaddrRFCOMM{
    //		Channel: 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top