Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for mq_close (0.15 sec)

  1. src/syscall/fs_wasip1.go

    )
    
    // https://github.com/WebAssembly/WASI/blob/a2b96e81c0586125cc4dc79a5be0b78d9a059925/legacy/preview1/docs.md#-fd_closefd-fd---result-errno
    //
    //go:wasmimport wasi_snapshot_preview1 fd_close
    //go:noescape
    func fd_close(fd int32) Errno
    
    // https://github.com/WebAssembly/WASI/blob/a2b96e81c0586125cc4dc79a5be0b78d9a059925/legacy/preview1/docs.md#-fd_filestat_set_sizefd-fd-size-filesize---result-errno
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. src/go/types/builtins.go

    			return false
    		}) {
    			return
    		}
    
    		x.mode = novalue
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(nil, x.typ))
    		}
    
    	case _Close:
    		// close(c)
    		if !underIs(x.typ, func(u Type) bool {
    			uch, _ := u.(*Chan)
    			if uch == nil {
    				check.errorf(x, InvalidClose, invalidOp+"cannot close non-channel %s", x)
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/builtins.go

    			return false
    		}) {
    			return
    		}
    
    		x.mode = novalue
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(nil, x.typ))
    		}
    
    	case _Close:
    		// close(c)
    		if !underIs(x.typ, func(u Type) bool {
    			uch, _ := u.(*Chan)
    			if uch == nil {
    				check.errorf(x, InvalidClose, invalidOp+"cannot close non-channel %s", x)
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	IN_CLASSB_NSHIFT                            = 0x10
    	IN_CLASSC_HOST                              = 0xff
    	IN_CLASSC_NET                               = 0xffffff00
    	IN_CLASSC_NSHIFT                            = 0x8
    	IN_CLOSE                                    = 0x18
    	IN_CLOSE_NOWRITE                            = 0x10
    	IN_CLOSE_WRITE                              = 0x8
    	IN_CREATE                                   = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top