Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for expAt (0.04 sec)

  1. internal/auth/credentials.go

    func ExpToInt64(expI any) (expAt int64, err error) {
    	switch exp := expI.(type) {
    	case string:
    		expAt, err = strconv.ParseInt(exp, 10, 64)
    	case float64:
    		expAt, err = int64(exp), nil
    	case int64:
    		expAt, err = exp, nil
    	case int:
    		expAt, err = int64(exp), nil
    	case uint64:
    		expAt, err = int64(exp), nil
    	case uint:
    		expAt, err = int64(exp), nil
    	case json.Number:
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  2. CREDITS

    github.com/mattn/go-isatty
    https://github.com/mattn/go-isatty
    ----------------------------------------------------------------
    Copyright (c) Yasuhiro MATSUMOTO <******@****.***>
    
    MIT License (Expat)
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Thu Mar 13 05:29:51 UTC 2025
    - 1.8M bytes
    - Viewed (0)
Back to top