Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 868 for Unmount (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.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: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    //sys	Sync() (err error)
    //sys	Truncate(path string, length int64) (err error)
    //sys	Umask(newmask int) (oldmask int)
    //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: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. docs/security/README.md

    - Seal the KMS such that it cannot be accessed by MinIO server anymore. That will lock **all** SSE-S3 encrypted objects protected by master keys stored on the KMS. All these objects can not be decrypted as long as the KMS is sealed.
    - Seal/Unmount one/some master keys. That will lock all SSE-S3 encrypted objects protected by these master keys. All these objects can not be decrypted as long as the key(s) are sealed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    //sys	Sync() (err error)
    //sys	Truncate(path string, length int64) (err error)
    //sys	Umask(newmask int) (oldmask int)
    //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: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. pkg/volume/util/fsquota/quota_linux.go

    // Breaking this up helps with testing
    func detectMountpointInternal(m mount.Interface, path string) (string, error) {
    	for path != "" && path != "/" {
    		// per k8s.io/mount-utils/mount_linux this detects all but
    		// a bind mount from one part of a mount to another.
    		// For our purposes that's fine; we simply want the "true"
    		// mount point
    		//
    		// IsNotMountPoint proved much more troublesome; it actually
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		if len(arg.Name) == 0 {
    			allErrs = append(allErrs, field.Invalid(fldPath, fmt.Sprintf("index %d", idx), "argument has no name"))
    		}
    	}
    
    	return allErrs
    }
    
    // ValidateUnmountFlags validates a set of unmount flags and collects all encountered errors
    func ValidateUnmountFlags(flags []string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	for idx, flag := range flags {
    		switch flag {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_freebsd_386.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)
  8. src/syscall/zsysnum_freebsd_amd64.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)
  9. pkg/kubelet/kubelet_volumes_test.go

    	assert.NoError(t, kubelet.volumeManager.WaitForUnmount(context.Background(), pod))
    	if actual := kubelet.volumeManager.GetMountedVolumesForPod(util.GetUniquePodName(pod)); len(actual) > 0 {
    		t.Fatalf("expected volume unmount to wait for no volumes: %v", actual)
    	}
    
    	// Verify volumes unmounted
    	podVolumes = kubelet.volumeManager.GetMountedVolumesForPod(
    		util.GetUniquePodName(pod))
    
    	assert.Len(t, podVolumes, 0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_attacher_test.go

    			deviceMountPath: "plugins/csi/" + generateSha("project/zone/test-vol1") + "/globalmount",
    			jsonFile:        `{"driverName":"test-driver","volumeHandle":"test-vol1"}`,
    			stageUnstageSet: false,
    		},
    		// PV agnostic path negative test cases
    		{
    			testName:        "success: json file doesn't exist, unmount device is skipped",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
Back to top