Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 242 for nlstat (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go

    //sys	Fstat(fd int, stat *Stat_t) (err error)
    //sys	Fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
    //sys	Fstatfs(fd int, stat *Statfs_t) (err error)
    //sys	getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err error) = SYS_GETFSSTAT
    //sys	Lstat(path string, stat *Stat_t) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NodeStatusRequest.java

    
    class NodeStatusRequest extends NameServicePacket {
    
        NodeStatusRequest ( Configuration cfg, Name name ) {
            super(cfg);
            this.questionName = name;
            this.questionType = NBSTAT;
            this.isRecurDesired = false;
            this.isBroadcast = false;
        }
    
    
        @Override
        int writeBodyWireFormat ( byte[] dst, int dstIndex ) {
            int tmp = this.questionName.hexCode;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  3. src/syscall/fs_wasip1.go

    	var stat fdstat
    	errno := fd_fdstat_get(int32(fd), unsafe.Pointer(&stat))
    	return uint32(stat.fdflags), errnoErr(errno)
    }
    
    // fd_fdstat_get_type is accessed from net
    //go:linkname fd_fdstat_get_type
    
    func fd_fdstat_get_type(fd int) (uint8, error) {
    	var stat fdstat
    	errno := fd_fdstat_get(int32(fd), unsafe.Pointer(&stat))
    	return stat.filetype, errnoErr(errno)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. src/syscall/syscall_darwin_amd64.go

    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    //sys	Fstat(fd int, stat *Stat_t) (err error) = SYS_fstat64
    //sys	Fstatfs(fd int, stat *Statfs_t) (err error) = SYS_fstatfs64
    //sysnb	Gettimeofday(tp *Timeval) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error) = SYS_lstat64
    //sys	Stat(path string, stat *Stat_t) (err error) = SYS_stat64
    //sys	Statfs(path string, stat *Statfs_t) (err error) = SYS_statfs64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/syscall/syscall_darwin_arm64.go

    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    //sys	Fstat(fd int, stat *Stat_t) (err error)
    //sys	Fstatfs(fd int, stat *Statfs_t) (err error)
    //sysnb	Gettimeofday(tp *Timeval) (err error)
    //sys	Lstat(path string, stat *Stat_t) (err error)
    //sys	Stat(path string, stat *Stat_t) (err error)
    //sys	Statfs(path string, stat *Statfs_t) (err error)
    //sys	fstatat(fd int, path string, stat *Stat_t, flags int) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. src/os/exec/lp_windows.go

    				//
    				// Otherwise, return the ErrDot for the implicit path as soon as we find
    				// out that the explicit one doesn't match.
    				dotfi, dotfiErr := os.Lstat(dotf)
    				fi, fiErr := os.Lstat(f)
    				if dotfiErr != nil || fiErr != nil || !os.SameFile(dotfi, fi) {
    					return dotf, dotErr
    				}
    			}
    
    			if !filepath.IsAbs(f) {
    				if execerrdot.Value() != "0" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/software/resources-sftp/src/integTest/groovy/org/gradle/integtests/resolve/resource/sftp/SftpClientReuseIntegrationTest.groovy

                    @TaskAction
                    void sftpTest() {
                        def client = sftpClientFactory.createSftpClient(new URI("${sftpServer.uri}"), credentials)
                        client.sftpClient.lstat("/")
                        sftpClientFactory.releaseSftpClient(client)
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpResourceAccessor.java

            LockableSftpClient sftpClient = sftpClientFactory.createSftpClient(location.getUri(), credentials);
            try {
                SftpATTRS attributes = sftpClient.getSftpClient().lstat(location.getPath());
                return attributes != null ? toMetaData(location.getUri(), attributes) : null;
            } catch (com.jcraft.jsch.SftpException e) {
                if (e.id == ChannelSftp.SSH_FX_NO_SUCH_FILE) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/internal/syscall/unix/nonblocking_wasip1.go

    }
    
    func HasNonblockFlag(flag int) bool {
    	return flag&syscall.FDFLAG_NONBLOCK != 0
    }
    
    // This helper is implemented in the syscall package. It means we don't have
    // to redefine the fd_fdstat_get host import or the fdstat struct it
    // populates.
    //
    //go:linkname fd_fdstat_get_flags syscall.fd_fdstat_get_flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:12:04 UTC 2023
    - 787 bytes
    - Viewed (0)
  10. src/os/os_test.go

    	}
    	tostat, err := Lstat(to)
    	if err != nil {
    		t.Fatalf("Lstat(%q) failed: %v", to, err)
    	}
    	if tostat.Mode()&ModeSymlink != 0 {
    		t.Fatalf("Lstat(%q).Mode()&ModeSymlink = %v, want 0", to, tostat.Mode()&ModeSymlink)
    	}
    	fromstat, err := Stat(from)
    	if err != nil {
    		t.Fatalf("Stat(%q) failed: %v", from, err)
    	}
    	if !SameFile(tostat, fromstat) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top