Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FSA (0.02 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)
  3. src/net/http/cookiejar/jar.go

    		// both are illegal.
    		return "", false, errMalformedDomain
    	}
    
    	domain, isASCII := ascii.ToLower(domain)
    	if !isASCII {
    		// Received non-ASCII domain, e.g. "perché.com" instead of "xn--perch-fsa.com"
    		return "", false, errMalformedDomain
    	}
    
    	if domain[len(domain)-1] == '.' {
    		// We received stuff like "Domain=www.example.com.".
    		// Browsers do handle such stuff (actually differently) but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top