Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 242 for nlstat (0.11 sec)

  1. src/syscall/zsysnum_freebsd_386.go

    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, \
    	SYS_NSTAT                    = 278 // { int nstat(char *path, struct nstat *ub); }
    	SYS_NFSTAT                   = 279 // { int nfstat(int fd, struct nstat *sb); }
    	SYS_NLSTAT                   = 280 // { int nlstat(char *path, struct nstat *ub); }
    	SYS_PREADV                   = 289 // { ssize_t preadv(int fd, struct iovec *iovp, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, \
    	SYS_NSTAT                    = 278 // { int nstat(char *path, struct nstat *ub); }
    	SYS_NFSTAT                   = 279 // { int nfstat(int fd, struct nstat *sb); }
    	SYS_NLSTAT                   = 280 // { int nlstat(char *path, struct nstat *ub); }
    	SYS_PREADV                   = 289 // { ssize_t preadv(int fd, struct iovec *iovp, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_arm.go

    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, \
    	SYS_NSTAT                    = 278 // { int nstat(char *path, struct nstat *ub); }
    	SYS_NFSTAT                   = 279 // { int nfstat(int fd, struct nstat *sb); }
    	SYS_NLSTAT                   = 280 // { int nlstat(char *path, struct nstat *ub); }
    	SYS_PREADV                   = 289 // { ssize_t preadv(int fd, struct iovec *iovp, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, struct timeval *tptr); }
    	SYS_NSTAT                    = 278 // { int nstat(char *path, struct nstat *ub); }
    	SYS_NFSTAT                   = 279 // { int nfstat(int fd, struct nstat *sb); }
    	SYS_NLSTAT                   = 280 // { int nlstat(char *path, struct nstat *ub); }
    	SYS_PREADV                   = 289 // { ssize_t preadv(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_freebsd_riscv64.go

    	SYS_LUTIMES                  = 276 // { int lutimes(char *path, struct timeval *tptr); }
    	SYS_NSTAT                    = 278 // { int nstat(char *path, struct nstat *ub); }
    	SYS_NFSTAT                   = 279 // { int nfstat(int fd, struct nstat *sb); }
    	SYS_NLSTAT                   = 280 // { int nlstat(char *path, struct nstat *ub); }
    	SYS_PREADV                   = 289 // { ssize_t preadv(int fd, struct iovec *iovp, u_int iovcnt, off_t offset); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  6. src/os/stat.go

    package os
    
    import "internal/testlog"
    
    // Stat returns a [FileInfo] describing the named file.
    // If there is an error, it will be of type [*PathError].
    func Stat(name string) (FileInfo, error) {
    	testlog.Stat(name)
    	return statNolog(name)
    }
    
    // Lstat returns a [FileInfo] describing the named file.
    // If the file is a symbolic link, the returned FileInfo
    // describes the symbolic link. Lstat makes no attempt to follow the link.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 973 bytes
    - Viewed (0)
  7. src/os/export_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    // Export for testing.
    
    var Atime = atime
    var LstatP = &lstat
    var ErrWriteAtInAppendMode = errWriteAtInAppendMode
    var TestingForceReadDirLstat = &testingForceReadDirLstat
    var ErrPatternHasSeparator = errPatternHasSeparator
    
    func init() {
    	checkWrapErr = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 27 06:21:27 UTC 2023
    - 433 bytes
    - Viewed (0)
  8. src/io/fs/stat.go

    package fs
    
    // A StatFS is a file system with a Stat method.
    type StatFS interface {
    	FS
    
    	// Stat returns a FileInfo describing the file.
    	// If there is an error, it should be of type *PathError.
    	Stat(name string) (FileInfo, error)
    }
    
    // Stat returns a [FileInfo] describing the named file from the file system.
    //
    // If fs implements [StatFS], Stat calls fs.Stat.
    // Otherwise, Stat opens the [File] to stat it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:25:50 UTC 2023
    - 803 bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Stat.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    public interface Stat {
        int getUnixMode(File f) throws FileException;
    
        FileMetadata stat(File f) throws FileException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 803 bytes
    - Viewed (0)
  10. src/os/stat_test.go

    }
    
    // testStatAndLstat verifies that all os.Stat, os.Lstat os.File.Stat and os.Readdir work.
    func testStatAndLstat(t *testing.T, path string, params testStatAndLstatParams) {
    	// test os.Stat
    	sfi, err := os.Stat(path)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    	params.statCheck(t, path, sfi)
    
    	// test os.Lstat
    	lsfi, err := os.Lstat(path)
    	if err != nil {
    		t.Error(err)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:38:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top