Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for NTFS (0.04 sec)

  1. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/DefaultWatchableFileSystemDetector.java

            // APFS on macOS
            "apfs",
            // HFS and HFS+ on macOS
            "hfs",
            "ext3",
            "ext4",
            "btrfs",
            "xfs",
            // NTFS on macOS
            "ntfs",
            // NTFS on Windows
            "NTFS",
            // FAT32 on macOS
            "msdos",
            // exFAT on macOS
            "exfat",
            // VirtualBox FS
            "vboxsf"
        );
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:38:01 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. pkg/util/filesystem/defaultfs.go

    // MkdirAllWithPathCheck creates.
    // If path is already a directory, MkdirAllWithPathCheck does nothing and returns nil.
    // NOTE: In case of Windows NTFS, mount points are implemented as reparse-point
    // (similar to symlink) and do not represent actual directory. Hence Directory existence
    // check for windows NTFS will NOT check for dir, but for symlink presence.
    func MkdirAllWithPathCheck(path string, perm os.FileMode) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/jdk7/WindowsJdk7Symlink.java

                boolean isJunction = attrs.isDirectory() && attrs.isOther();
                // Handles both junctions and real symlinks (https://www.2brightsparks.com/resources/articles/NTFS-Hard-Links-Junctions-and-Symbolic-Links.pdf)
                return isJunction || super.isSymlink(suspect);
            } catch (IOException e) {
                return super.isSymlink(suspect);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. internal/disk/type_linux.go

    var fsType2StringMap = map[string]string{
    	"1021994":  "TMPFS",
    	"137d":     "EXT",
    	"4244":     "HFS",
    	"4d44":     "MSDOS",
    	"52654973": "REISERFS",
    	"5346544e": "NTFS",
    	"58465342": "XFS",
    	"61756673": "AUFS",
    	"6969":     "NFS",
    	"ef51":     "EXT2OLD",
    	"ef53":     "EXT4",
    	"f15f":     "ecryptfs",
    	"794c7630": "overlayfs",
    	"2fc12fc1": "zfs",
    	"ff534d42": "cifs",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. internal/disk/stat_linux_s390x.go

    var fsType2StringMap = map[string]string{
    	"1021994":  "TMPFS",
    	"137d":     "EXT",
    	"4244":     "HFS",
    	"4d44":     "MSDOS",
    	"52654973": "REISERFS",
    	"5346544e": "NTFS",
    	"58465342": "XFS",
    	"61756673": "AUFS",
    	"6969":     "NFS",
    	"ef51":     "EXT2OLD",
    	"ef53":     "EXT4",
    	"f15f":     "ecryptfs",
    	"794c7630": "overlayfs",
    	"2fc12fc1": "zfs",
    	"ff534d42": "cifs",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. internal/disk/stat_linux_32bit.go

    var fsType2StringMap = map[string]string{
    	"1021994":  "TMPFS",
    	"137d":     "EXT",
    	"4244":     "HFS",
    	"4d44":     "MSDOS",
    	"52654973": "REISERFS",
    	"5346544e": "NTFS",
    	"58465342": "XFS",
    	"61756673": "AUFS",
    	"6969":     "NFS",
    	"ef51":     "EXT2OLD",
    	"ef53":     "EXT4",
    	"f15f":     "ecryptfs",
    	"794c7630": "overlayfs",
    	"2fc12fc1": "zfs",
    	"ff534d42": "cifs",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. .github/bot_config.yml

    windows_comment: >
       From the stack trace it looks like you are hitting windows path length limit.
          * Try to disable path length limit on Windows 10.
            * Refer [disable path length limit instructions guide.](https://mspoweruser.com/ntfs-260-character-windows-10/)
       
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    * macOS 10.14 (Mojave) or later on Intel and ARM architectures
    
    == Supported File Systems
    
    File system watching supports the following file system types:
    
    * APFS
    * btrfs
    * ext3
    * ext4
    * XFS
    * HFS+
    * NTFS
    
    Gradle also supports VirtualBox's shared folders.
    
    Network file systems like Samba and NFS are not supported.
    
    .Symlinks
    --
    File system watching is not compatible with symlinks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      optional string volumeID = 1;
    
      // fsType is the filesystem type of the volume that you want to mount.
      // Tip: Ensure that the filesystem type is supported by the host operating system.
      // Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
      // TODO: how do we prevent errors in the filesystem from compromising the machine
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// Unique name of the PD resource. Used to identify the disk in GCE
    	PDName string
    	// Filesystem type to mount.
    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    	// TODO: how do we prevent errors in the filesystem from compromising the machine
    	// +optional
    	FSType string
    	// Optional: Partition on the disk to mount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top