Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NumberOfLinks (0.19 sec)

  1. src/main/java/jcifs/internal/fscc/FileStandardInfo.java

        @Override
        public String toString () {
            return new String(
                "SmbQueryInfoStandard[" + "allocationSize=" + this.allocationSize + ",endOfFile=" + this.endOfFile + ",numberOfLinks="
                        + this.numberOfLinks + ",deletePending=" + this.deletePending + ",directory=" + this.directory + "]");
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java

            public String toString() {
                return new String( "SmbQueryInfoStandard[" +
                    "allocationSize=" + allocationSize +
                    ",endOfFile=" + endOfFile +
                    ",numberOfLinks=" + numberOfLinks +
                    ",deletePending=" + deletePending +
                    ",directory=" + directory + "]" );
            }
        }
    
        private int informationLevel;
    
        Info info;
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  3. src/syscall/types_windows.go

    	FileAttributes     uint32
    	CreationTime       Filetime
    	LastAccessTime     Filetime
    	LastWriteTime      Filetime
    	VolumeSerialNumber uint32
    	FileSizeHigh       uint32
    	FileSizeLow        uint32
    	NumberOfLinks      uint32
    	FileIndexHigh      uint32
    	FileIndexLow       uint32
    }
    
    const (
    	GetFileExInfoStandard = 0
    	GetFileExMaxInfoLevel = 1
    )
    
    type Win32FileAttributeData struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	FileAttributes     uint32
    	CreationTime       Filetime
    	LastAccessTime     Filetime
    	LastWriteTime      Filetime
    	VolumeSerialNumber uint32
    	FileSizeHigh       uint32
    	FileSizeLow        uint32
    	NumberOfLinks      uint32
    	FileIndexHigh      uint32
    	FileIndexLow       uint32
    }
    
    const (
    	GetFileExInfoStandard = 0
    	GetFileExMaxInfoLevel = 1
    )
    
    type Win32FileAttributeData struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ByHandleFileInformation.FileSizeLow", Field, 0},
    		{"ByHandleFileInformation.LastAccessTime", Field, 0},
    		{"ByHandleFileInformation.LastWriteTime", Field, 0},
    		{"ByHandleFileInformation.NumberOfLinks", Field, 0},
    		{"ByHandleFileInformation.VolumeSerialNumber", Field, 0},
    		{"BytePtrFromString", Func, 1},
    		{"ByteSliceFromString", Func, 1},
    		{"CCR0_FLUSH", Const, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg syscall (windows-386), type ByHandleFileInformation struct, LastWriteTime Filetime
    pkg syscall (windows-386), type ByHandleFileInformation struct, NumberOfLinks uint32
    pkg syscall (windows-386), type ByHandleFileInformation struct, VolumeSerialNumber uint32
    pkg syscall (windows-386), type CertChainContext struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top