Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	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
    }
    
    // unmountKubeletDirectory unmounts all paths that contain KubeletRunDirectory
    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

    	UnmountFlagMNTDetach = "MNT_DETACH"
    	// UnmountFlagMNTExpire represents the flag "MNT_EXPIRE"
    	UnmountFlagMNTExpire = "MNT_EXPIRE"
    	// UnmountFlagUmountNoFollow represents the flag "UMOUNT_NOFOLLOW"
    	UnmountFlagUmountNoFollow = "UMOUNT_NOFOLLOW"
    )
    
    // ComponentConfigMap is a map between a group name (as in GVK group) and a ComponentConfig
    type ComponentConfigMap map[string]ComponentConfig
    
    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. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// 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)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	UDP_NO_CHECK6_TX                            = 0x65
    	UDP_SEGMENT                                 = 0x67
    	UDP_V4_FLOW                                 = 0x2
    	UDP_V6_FLOW                                 = 0x6
    	UMOUNT_NOFOLLOW                             = 0x8
    	USBDEVICE_SUPER_MAGIC                       = 0x9fa2
    	UTIME_NOW                                   = 0x3fffffff
    	UTIME_OMIT                                  = 0x3ffffffe
    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