Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 868 for Unmount (0.14 sec)

  1. src/syscall/zsysnum_freebsd_arm.go

    	SYS_OBREAK                   = 17  // { int obreak(char *nsize); } break \
    	SYS_GETPID                   = 20  // { pid_t getpid(void); }
    	SYS_MOUNT                    = 21  // { int mount(char *type, char *path, \
    	SYS_UNMOUNT                  = 22  // { int unmount(char *path, int flags); }
    	SYS_SETUID                   = 23  // { int setuid(uid_t uid); }
    	SYS_GETUID                   = 24  // { uid_t getuid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter.go

    }
    
    func isCorruptedDir(dir string) bool {
    	_, pathErr := mount.PathExists(dir)
    	return pathErr != nil && mount.IsCorruptedMnt(pathErr)
    }
    
    // removeMountDir cleans the mount dir when dir is not mounted and removed the volume data file in dir
    func removeMountDir(plug *csiPlugin, mountPath string) error {
    	klog.V(4).Info(log("removing mount path [%s]", mountPath))
    
    	mnt, err := isDirMounted(plug, mountPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  3. pkg/volume/util/nestedpendingoperations/nestedpendingoperations_test.go

    	if err5 != nil {
    		t.Errorf("NestedPendingOperations failed. Expected: <no error> Actual: <%v>", err5)
    	}
    	time.Sleep(delay)
    
    	// Assert
    	// Operation5 will override operation2, since we successfully finished unmount operation on pod2, it should be removed from operations array
    	grm.(*nestedPendingOperations).lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 36.1K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_GETFSSTAT     = 18  // { int getfsstat(struct statfs *buf, long bufsize, \
    	SYS_GETPID        = 20  // { pid_t getpid(void); }
    	SYS_MOUNT         = 21  // { int mount(char *type, char *path, int flags, \
    	SYS_UNMOUNT       = 22  // { int unmount(char *path, int flags); }
    	SYS_SETUID        = 23  // { int setuid(uid_t uid); }
    	SYS_GETUID        = 24  // { uid_t getuid(void); }
    	SYS_GETEUID       = 25  // { uid_t geteuid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    //sys	Utime(path string, buf *Utimbuf) (err error)
    
    //sys	Getsystemcfg(label int) (n uint64)
    
    //sys	umount(target string) (err error)
    
    func Unmount(target string, flags int) (err error) {
    	if flags != 0 {
    		// AIX doesn't have any flags for umount.
    		return ENOSYS
    	}
    	return umount(target)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sys	Umask(newmask int) (oldmask int)
    //sys	Undelete(path string) (err error)
    //sys	Unlink(path string) (err error)
    //sys	Unlinkat(dirfd int, path string, flags int) (err error)
    //sys	Unmount(path string, flags int) (err error)
    //sys	write(fd int, p []byte) (n int, err error)
    //sys	mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pkg/volume/local/local_test.go

    	}{
    		"empty": {
    			[]string{},
    			[]string{},
    		},
    		"not-pod-mount": {
    			[]string{"/mnt/outside"},
    			[]string{},
    		},
    		"pod-mount": {
    			[]string{filepath.Join(podsDir, "pod-mount")},
    			[]string{filepath.Join(podsDir, "pod-mount")},
    		},
    		"not-directory-prefix": {
    			[]string{podsDir + "pod-mount"},
    			[]string{},
    		},
    		"mix": {
    			[]string{"/mnt/outside",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_mounter_test.go

    	// save the data file prior to unmount
    	targetDir := getTargetPath(testPodUID, pv.ObjectMeta.Name, plug.host)
    	dir := filepath.Join(targetDir, "mount")
    	if err := os.MkdirAll(dir, 0755); err != nil && !os.IsNotExist(err) {
    		t.Errorf("failed to create dir [%s]: %v", dir, err)
    	}
    
    	// do a fake local mount
    	diskMounter := util.NewSafeFormatAndMountFromHost(plug.GetPluginName(), plug.host)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_BREAK                = 17  // { int|sys||obreak(char *nsize); }
    	SYS_GETPID               = 20  // { pid_t|sys||getpid_with_ppid(void); }
    	SYS_UNMOUNT              = 22  // { int|sys||unmount(const char *path, int flags); }
    	SYS_SETUID               = 23  // { int|sys||setuid(uid_t uid); }
    	SYS_GETUID               = 24  // { uid_t|sys||getuid_with_euid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_netbsd_arm.go

    	SYS_BREAK                = 17  // { int|sys||obreak(char *nsize); }
    	SYS_GETPID               = 20  // { pid_t|sys||getpid_with_ppid(void); }
    	SYS_UNMOUNT              = 22  // { int|sys||unmount(const char *path, int flags); }
    	SYS_SETUID               = 23  // { int|sys||setuid(uid_t uid); }
    	SYS_GETUID               = 24  // { uid_t|sys||getuid_with_euid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
Back to top