Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for saveFile (0.42 sec)

  1. api/go1.16.txt

    pkg os, func OpenFile(string, int, fs.FileMode) (*File, error)
    pkg os, func ReadDir(string) ([]fs.DirEntry, error)
    pkg os, func ReadFile(string) ([]uint8, error)
    pkg os, func SameFile(fs.FileInfo, fs.FileInfo) bool
    pkg os, func Stat(string) (fs.FileInfo, error)
    pkg os, func WriteFile(string, []uint8, fs.FileMode) error
    pkg os, method (*File) Chmod(fs.FileMode) error
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  2. api/go1.txt

    pkg os, func Pipe() (*File, *File, error)
    pkg os, func Readlink(string) (string, error)
    pkg os, func Remove(string) error
    pkg os, func RemoveAll(string) error
    pkg os, func Rename(string, string) error
    pkg os, func SameFile(FileInfo, FileInfo) bool
    pkg os, func Setenv(string, string) error
    pkg os, func StartProcess(string, []string, *ProcAttr) (*Process, error)
    pkg os, func Stat(string) (FileInfo, error)
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  3. api/except.txt

    pkg os, func Lstat(string) (FileInfo, error)
    pkg os, func Mkdir(string, FileMode) error
    pkg os, func MkdirAll(string, FileMode) error
    pkg os, func OpenFile(string, int, FileMode) (*File, error)
    pkg os, func SameFile(FileInfo, FileInfo) bool
    pkg os, func Stat(string) (FileInfo, error)
    pkg os, method (*File) Chmod(FileMode) error
    pkg os, method (*File) Readdir(int) ([]FileInfo, error)
    pkg os, method (*File) Stat() (FileInfo, error)
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu May 25 00:13:30 GMT 2023
    - 34.6K bytes
    - Viewed (0)
  4. api/go1.4.txt

    pkg syscall (windows-amd64), type ProcessEntry32 struct, Threads uint32
    pkg syscall (windows-amd64), type ProcessEntry32 struct, Usage uint32
    
    # CL 127740043 os: make SameFile handle paths like c:a.txt properly, Alex Brainman <******@****.***>
    pkg syscall (windows-386), func FullPath(string) (string, error)
    pkg syscall (windows-amd64), func FullPath(string) (string, error)
    
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  5. src/cmd/addr2line/addr2line_test.go

    	// Debug paths are stored slash-separated, so convert to system-native.
    	srcPath = filepath.FromSlash(srcPath)
    	fi2, err := os.Stat(srcPath)
    
    	if err != nil {
    		t.Fatalf("Stat failed: %v", err)
    	}
    	if !os.SameFile(fi1, fi2) {
    		t.Fatalf("addr2line_test.go and %s are not same file", srcPath)
    	}
    	if want := "124"; srcLineNo != want {
    		t.Fatalf("line number = %v; want %s", srcLineNo, want)
    	}
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 22:16:54 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top