Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FSA (0.03 sec)

  1. test/noinit.go

    var LitSXInit = &S{1, 2, 3}
    var LitSAnyXInit any = &S{4, 5, 6}
    
    func FS(x, y, z int) *S   { return &S{x, y, z} }
    func FSA(x, y, z int) any { return &S{x, y, z} }
    func F3(x int) *S         { return &S{x, x, x} }
    
    var LitSCallXInit = FS(7, 8, 9)
    var LitSAnyCallXInit any = FSA(10, 11, 12)
    
    var LitSRepeat = F3(1 + 2)
    
    func F0() *S { return &S{1, 2, 3} }
    
    var LitSNoArgs = F0()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. src/os/dir_windows.go

    					// GetFileInformationByHandleEx doesn't document the return error codes when the info class is FileIdBothDirectoryRestartInfo,
    					// but MS-FSA 2.1.5.6.3 [1] specifies that the underlying file system driver should return STATUS_NO_SUCH_FILE when
    					// reading an empty root directory, which is mapped to ERROR_FILE_NOT_FOUND by Windows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top