Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NTFS (0.07 sec)

  1. android/guava/src/com/google/common/io/Files.java

       * name as determined by {@link File#getName}. It does not account for any filesystem-specific
       * behavior that the {@link File} API does not already account for. For example, on NTFS it will
       * report {@code "txt"} as the extension for the filename {@code "foo.exe:.txt"} even though NTFS
       * will drop the {@code ":.txt"} part of the name when the file is actually created on the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Files.java

       * name as determined by {@link File#getName}. It does not account for any filesystem-specific
       * behavior that the {@link File} API does not already account for. For example, on NTFS it will
       * report {@code "txt"} as the extension for the filename {@code "foo.exe:.txt"} even though NTFS
       * will drop the {@code ":.txt"} part of the name when the file is actually created on the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/MoreFiles.java

       * behavior that the {@link Path} API does not already account for. For example, on NTFS it will
       * report {@code "txt"} as the extension for the filename {@code "foo.exe:.txt"} even though NTFS
       * will drop the {@code ":.txt"} part of the name when the file is actually created on the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/shell.go

    	dir, _ := cache.DefaultDir()
    	if strings.HasPrefix(src, dir) {
    		return sh.CopyFile(dst, src, perm, force)
    	}
    
    	// On Windows, always copy the file, so that we respect the NTFS
    	// permissions of the parent folder. https://golang.org/issue/22343.
    	// What matters here is not cfg.Goos (the system we are building
    	// for) but runtime.GOOS (the system we are building on).
    	if runtime.GOOS == "windows" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. src/path/filepath/path_windows_test.go

    		fmt.Sprintf("$vhd = Get-VHD %q", vhd),
    		"$vhd | Get-Disk | Initialize-Disk -PartitionStyle GPT",
    		"$part = $vhd | Get-Disk | New-Partition -UseMaximumSize -AssignDriveLetter:$false",
    		"$vol = $part | Format-Volume -FileSystem NTFS",
    		args,
    	}, "\n")
    
    	err := os.WriteFile(script, []byte(cmd), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    	output, err := testenv.Command(t, "powershell", "-File", script).CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. pkg/volume/plugins.go

    	// Provisioners SHOULD implement support for this if they are block device based
    	// Must be a filesystem type supported by the host operating system.
    	// Ex. "ext4", "xfs", "ntfs". Default value depends on the provisioner
    	VolumeParameterFSType = "fstype"
    
    	ProbeAddOrUpdate ProbeOperation = 1 << iota
    	ProbeRemove
    )
    
    // VolumeOptions contains option information about a volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top