Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for mq_close (0.26 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	IN_UNMOUNT               = 0x00002000
    	IN_Q_OVERFLOW            = 0x00004000
    	IN_IGNORED               = 0x00008000
    	IN_CLOSE                 = (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
    	IN_MOVE                  = (IN_MOVED_FROM | IN_MOVED_TO)
    	IN_ALL_EVENTS            = (IN_ACCESS | IN_MODIFY | IN_ATTRIB |
    		IN_CLOSE | IN_OPEN | IN_MOVE |
    		IN_CREATE | IN_DELETE | IN_DELETE_SELF |
    		IN_MOVE_SELF)
    	IN_ONLYDIR                      = 0x01000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/universe.go

    }
    
    // A builtinId is the id of a builtin function.
    type builtinId int
    
    const (
    	// universe scope
    	_Append builtinId = iota
    	_Cap
    	_Clear
    	_Close
    	_Complex
    	_Copy
    	_Delete
    	_Imag
    	_Len
    	_Make
    	_Max
    	_Min
    	_New
    	_Panic
    	_Print
    	_Println
    	_Real
    	_Recover
    
    	// package unsafe
    	_Add
    	_Alignof
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/go/types/universe.go

    }
    
    // A builtinId is the id of a builtin function.
    type builtinId int
    
    const (
    	// universe scope
    	_Append builtinId = iota
    	_Cap
    	_Clear
    	_Close
    	_Complex
    	_Copy
    	_Delete
    	_Imag
    	_Len
    	_Make
    	_Max
    	_Min
    	_New
    	_Panic
    	_Print
    	_Println
    	_Real
    	_Recover
    
    	// package unsafe
    	_Add
    	_Alignof
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IN_CLASSC_NET", Const, 0},
    		{"IN_CLASSC_NSHIFT", Const, 0},
    		{"IN_CLASSD_HOST", Const, 0},
    		{"IN_CLASSD_NET", Const, 0},
    		{"IN_CLASSD_NSHIFT", Const, 0},
    		{"IN_CLOEXEC", Const, 0},
    		{"IN_CLOSE", Const, 0},
    		{"IN_CLOSE_NOWRITE", Const, 0},
    		{"IN_CLOSE_WRITE", Const, 0},
    		{"IN_CREATE", Const, 0},
    		{"IN_DELETE", Const, 0},
    		{"IN_DELETE_SELF", Const, 0},
    		{"IN_DONT_FOLLOW", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top