Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for MNT_EXPIRE (0.39 sec)

  1. cmd/kubeadm/app/cmd/phases/reset/unmount_linux.go

    )
    
    var flagMap = map[string]int{
    	kubeadmapi.UnmountFlagMNTForce:       unix.MNT_FORCE,
    	kubeadmapi.UnmountFlagMNTDetach:      unix.MNT_DETACH,
    	kubeadmapi.UnmountFlagMNTExpire:      unix.MNT_EXPIRE,
    	kubeadmapi.UnmountFlagUmountNoFollow: unix.UMOUNT_NOFOLLOW,
    }
    
    func flagsToInt(flags []string) int {
    	res := 0
    	for _, f := range flags {
    		res |= flagMap[f]
    	}
    	return res
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 10:58:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/types.go

    	UnmountFlagMNTForce = "MNT_FORCE"
    	// UnmountFlagMNTDetach represents the flag "MNT_DETACH"
    	UnmountFlagMNTDetach = "MNT_DETACH"
    	// UnmountFlagMNTExpire represents the flag "MNT_EXPIRE"
    	UnmountFlagMNTExpire = "MNT_EXPIRE"
    	// UnmountFlagUmountNoFollow represents the flag "UMOUNT_NOFOLLOW"
    	UnmountFlagUmountNoFollow = "UMOUNT_NOFOLLOW"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. src/syscall/zerrors_linux_amd64.go

    	MAP_STACK                        = 0x20000
    	MAP_TYPE                         = 0xf
    	MCL_CURRENT                      = 0x1
    	MCL_FUTURE                       = 0x2
    	MNT_DETACH                       = 0x2
    	MNT_EXPIRE                       = 0x4
    	MNT_FORCE                        = 0x1
    	MSG_CMSG_CLOEXEC                 = 0x40000000
    	MSG_CONFIRM                      = 0x800
    	MSG_CTRUNC                       = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  4. src/syscall/zerrors_linux_386.go

    	MAP_STACK                        = 0x20000
    	MAP_TYPE                         = 0xf
    	MCL_CURRENT                      = 0x1
    	MCL_FUTURE                       = 0x2
    	MNT_DETACH                       = 0x2
    	MNT_EXPIRE                       = 0x4
    	MNT_FORCE                        = 0x1
    	MSG_CMSG_CLOEXEC                 = 0x40000000
    	MSG_CONFIRM                      = 0x800
    	MSG_CTRUNC                       = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_riscv64.go

    	MAP_TYPE                         = 0xf
    	MCL_CURRENT                      = 0x1
    	MCL_FUTURE                       = 0x2
    	MCL_ONFAULT                      = 0x4
    	MNT_DETACH                       = 0x2
    	MNT_EXPIRE                       = 0x4
    	MNT_FORCE                        = 0x1
    	MSG_BATCH                        = 0x40000
    	MSG_CMSG_CLOEXEC                 = 0x40000000
    	MSG_CONFIRM                      = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.8K bytes
    - Viewed (0)
  6. src/syscall/zerrors_linux_arm.go

    	MAP_SHARED                       = 0x1
    	MAP_TYPE                         = 0xf
    	MCL_CURRENT                      = 0x1
    	MCL_FUTURE                       = 0x2
    	MNT_DETACH                       = 0x2
    	MNT_EXPIRE                       = 0x4
    	MNT_FORCE                        = 0x1
    	MSG_CMSG_CLOEXEC                 = 0x40000000
    	MSG_CONFIRM                      = 0x800
    	MSG_CTRUNC                       = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.9K bytes
    - Viewed (0)
  7. src/syscall/zerrors_linux_ppc64.go

    	MAP_STACK                        = 0x20000
    	MAP_TYPE                         = 0xf
    	MCL_CURRENT                      = 0x2000
    	MCL_FUTURE                       = 0x4000
    	MNT_DETACH                       = 0x2
    	MNT_EXPIRE                       = 0x4
    	MNT_FORCE                        = 0x1
    	MSG_CMSG_CLOEXEC                 = 0x40000000
    	MSG_CONFIRM                      = 0x800
    	MSG_CTRUNC                       = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.9K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_s390x.go

    	MAP_STACK                        = 0x20000
    	MAP_TYPE                         = 0xf
    	MCL_CURRENT                      = 0x1
    	MCL_FUTURE                       = 0x2
    	MNT_DETACH                       = 0x2
    	MNT_EXPIRE                       = 0x4
    	MNT_FORCE                        = 0x1
    	MSG_CMSG_CLOEXEC                 = 0x40000000
    	MSG_CONFIRM                      = 0x800
    	MSG_CTRUNC                       = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 73.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	SkipPhases []string `json:"skipPhases,omitempty"`
    
    	// UnmountFlags is a list of unmount2() syscall flags that kubeadm can use when unmounting
    	// directories during "reset". A flag can be one of: MNT_FORCE, MNT_DETACH, MNT_EXPIRE, UMOUNT_NOFOLLOW.
    	// By default this list is empty.
    	// +optional
    	UnmountFlags []string `json:"unmountFlags,omitempty"`
    
    	// Timeouts holds various timeouts that apply to kubeadm commands.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_ppc64le.go

    	MAP_STACK                        = 0x20000
    	MAP_TYPE                         = 0xf
    	MCL_CURRENT                      = 0x2000
    	MCL_FUTURE                       = 0x4000
    	MNT_DETACH                       = 0x2
    	MNT_EXPIRE                       = 0x4
    	MNT_FORCE                        = 0x1
    	MSG_CMSG_CLOEXEC                 = 0x40000000
    	MSG_CONFIRM                      = 0x800
    	MSG_CTRUNC                       = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
Back to top