Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for syscalls (0.11 sec)

  1. CHANGELOG/CHANGELOG-1.25.md

    ### Promoted SeccompDefault to Beta
    
    SeccompDefault promoted to beta, see the tutorial [Restrict a Container's Syscalls with seccomp](https://kubernetes.io/docs/tutorials/security/seccomp/#enable-the-use-of-runtimedefault-as-the-default-seccomp-profile-for-all-workloads) for more details.
    
    ### Promoted endPort in Network Policy to Stable
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Overrun   uint32
    	Trapno    uint32
    	Status    int32
    	Int       int32
    	Ptr       uint64
    	Utime     uint64
    	Stime     uint64
    	Addr      uint64
    	Addr_lsb  uint16
    	_         uint16
    	Syscall   int32
    	Call_addr uint64
    	Arch      uint32
    	_         [28]uint8
    }
    
    type Winsize struct {
    	Row    uint16
    	Col    uint16
    	Xpixel uint16
    	Ypixel uint16
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	// have a way to bundle this into std's net/http somehow.
    	if runtime.GOOS == "windows" {
    		if oe, ok := err.(*net.OpError); ok && oe.Op == "read" {
    			if se, ok := oe.Err.(*os.SyscallError); ok && se.Syscall == "wsarecv" {
    				const WSAECONNABORTED = 10053
    				const WSAECONNRESET = 10054
    				if n := http2errno(se.Err); n == WSAECONNRESET || n == WSAECONNABORTED {
    					return true
    				}
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top