Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/archive/tar/strconv.go

    	const maxNanoSecondDigits = 9
    
    	// Split string into seconds and sub-seconds parts.
    	ss, sn, _ := strings.Cut(s, ".")
    
    	// Parse the seconds.
    	secs, err := strconv.ParseInt(ss, 10, 64)
    	if err != nil {
    		return time.Time{}, ErrHeader
    	}
    	if len(sn) == 0 {
    		return time.Unix(secs, 0), nil // No sub-second values
    	}
    
    	// Parse the nanoseconds.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Sep 08 17:08:20 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

            * [Advanced Middleware](https://fastapi.tiangolo.com/advanced/middleware/).
            * [Including WSGI - Flask, Django, others](https://fastapi.tiangolo.com/advanced/wsgi/).
        * PR [#1064](https://github.com/tiangolo/fastapi/pull/1064).
    
    ## 0.50.0
    
    * Add link to Release Notes from docs about pinning versions for deployment. PR [#1058](https://github.com/tiangolo/fastapi/pull/1058).
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
Back to top