Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 192 for Lstat (0.16 sec)

  1. cmd/metacache-walk.go

    			// behavior.
    			if err := send(metaCacheEntry{
    				name:     opts.BaseDir,
    				metadata: metadata,
    			}); err != nil {
    				return err
    			}
    		} else {
    			st, sterr := Lstat(pathJoin(volumeDir, opts.BaseDir, xlStorageFormatFile))
    			if sterr == nil && st.Mode().IsRegular() {
    				return errFileNotFound
    			}
    		}
    	}
    
    	prefix := opts.FilterPrefix
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 15 08:25:46 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  2. misc/wasm/wasm_exec.js

    			fchown(fd, uid, gid, callback) { callback(enosys()); },
    			fstat(fd, callback) { callback(enosys()); },
    			fsync(fd, callback) { callback(null); },
    			ftruncate(fd, length, callback) { callback(enosys()); },
    			lchown(path, uid, gid, callback) { callback(enosys()); },
    			link(path, link, callback) { callback(enosys()); },
    			lstat(path, callback) { callback(enosys()); },
    			mkdir(path, perm, callback) { callback(enosys()); },
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  3. src/archive/tar/tar_test.go

    	testenv.MustHaveSymlink(t)
    
    	tmpdir := t.TempDir()
    
    	link := filepath.Join(tmpdir, "link")
    	target := tmpdir
    	if err := os.Symlink(target, link); err != nil {
    		t.Fatal(err)
    	}
    	fi, err := os.Lstat(link)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	h, err := FileInfoHeader(fi, target)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if g, e := h.Name, fi.Name(); g != e {
    		t.Errorf("Name = %q; want %q", g, e)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24K bytes
    - Viewed (0)
  4. cmd/format-erasure.go

    	}
    
    	migrate := func(formatPath string, formatData []byte) ([]byte, fs.FileInfo, error) {
    		if err = os.WriteFile(formatPath, formatData, 0o666); err != nil {
    			return nil, nil, err
    		}
    		formatFi, err := Lstat(formatPath)
    		if err != nil {
    			return nil, nil, err
    		}
    		return formatData, formatFi, nil
    	}
    
    	switch version {
    	case formatErasureVersionV1:
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 15:54:03 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  5. api/go1.3.txt

    pkg syscall (netbsd-arm), type Kevent_t struct, Pad_cgo_0 [4]uint8
    pkg syscall (netbsd-arm), type Stat_t struct, Pad_cgo_0 [4]uint8
    pkg syscall (netbsd-arm), type Stat_t struct, Pad_cgo_1 [4]uint8
    pkg syscall (netbsd-arm), type Stat_t struct, Pad_cgo_2 [4]uint8
    pkg syscall (netbsd-arm), type Termios struct
    pkg syscall (netbsd-arm), type Termios struct, Cc [20]uint8
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64-cgo), type Stat_t struct, Flags uint32
    pkg syscall (darwin-arm64-cgo), type Stat_t struct, Gen uint32
    pkg syscall (darwin-arm64-cgo), type Stat_t struct, Gid uint32
    pkg syscall (darwin-arm64-cgo), type Stat_t struct, Ino uint64
    pkg syscall (darwin-arm64-cgo), type Stat_t struct, Lspare int32
    pkg syscall (darwin-arm64-cgo), type Stat_t struct, Mode uint16
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (darwin-386), type Stat_t struct, Flags uint32
    pkg syscall (darwin-386), type Stat_t struct, Gen uint32
    pkg syscall (darwin-386), type Stat_t struct, Gid uint32
    pkg syscall (darwin-386), type Stat_t struct, Ino uint64
    pkg syscall (darwin-386), type Stat_t struct, Lspare int32
    pkg syscall (darwin-386), type Stat_t struct, Mode uint16
    pkg syscall (darwin-386), type Stat_t struct, Mtimespec Timespec
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  8. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), type Stat_t struct, Flags uint32
    pkg syscall (freebsd-386-cgo), type Stat_t struct, Gen uint32
    pkg syscall (freebsd-386-cgo), type Stat_t struct, Gid uint32
    pkg syscall (freebsd-386-cgo), type Stat_t struct, Ino uint32
    pkg syscall (freebsd-386-cgo), type Stat_t struct, Lspare int32
    pkg syscall (freebsd-386-cgo), type Stat_t struct, Mode uint16
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  9. internal/disk/stat_linux.go

    		if err == nil {
    			devName := ""
    			diskstats, _ := bfs.ProcDiskstats()
    			for _, dstat := range diskstats {
    				// ignore all loop devices
    				if strings.HasPrefix(dstat.DeviceName, "loop") {
    					continue
    				}
    				if dstat.MajorNumber == info.Major && dstat.MinorNumber == info.Minor {
    					devName = dstat.DeviceName
    					break
    				}
    			}
    			if devName != "" {
    				info.Name = devName
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Feb 26 19:34:50 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  10. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Flags uint32
    pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Gen uint32
    pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Gid uint32
    pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Ino uint64
    pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Mode uint32
    pkg syscall (netbsd-arm64-cgo), type Stat_t struct, Mtimespec Timespec
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
Back to top