Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for 8064 (0.04 seconds)

  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.
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue Dec 30 15:28:53 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  2. pyproject.toml

        "mkdocs-macros-plugin >=1.5.0",
        "mkdocs-material >=9.7.0",
        "mkdocs-redirects >=1.2.1,<1.3.0",
        "mkdocstrings[python] >=0.30.1",
        "pillow >=11.3.0",
        "python-slugify >=8.0.4",
        "pyyaml >=5.3.1,<7.0.0",
        "typer >=0.21.1",
    ]
    docs-tests = [
        "httpx >=0.23.0,<1.0.0",
        "ruff >=0.14.14",
        # For UJSONResponse
        "ujson >=5.8.0",
        # For ORJSONResponse
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 12:36:49 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  3. docs/en/data/topic_repos.yml

      stars: 6784
      owner_login: hatchet-dev
      owner_html_url: https://github.com/hatchet-dev
    - name: fastapi-users
      html_url: https://github.com/fastapi-users/fastapi-users
      stars: 6064
      owner_login: fastapi-users
      owner_html_url: https://github.com/fastapi-users
    - name: serge
      html_url: https://github.com/serge-chat/serge
      stars: 5738
      owner_login: serge-chat
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 12:36:41 GMT 2026
    - 16K bytes
    - Click Count (0)
  4. src/cmd/asm/internal/asm/parse.go

    func (p *Parser) positiveAtoi(str string) int64 {
    	value, err := strconv.ParseInt(str, 0, 64)
    	if err != nil {
    		p.errorf("%s", err)
    	}
    	if value < 0 {
    		p.errorf("%s overflows int64", str)
    	}
    	return value
    }
    
    func (p *Parser) atoi(str string) uint64 {
    	value, err := strconv.ParseUint(str, 0, 64)
    	if err != nil {
    		p.errorf("%s", err)
    	}
    	return value
    }
    
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue Feb 17 19:57:47 GMT 2026
    - 37.3K bytes
    - Click Count (0)
  5. lib/fips140/v1.26.0.zip

    "33D2753ED87D0003B44C", "84D4AF50933D6E13D433", NewPrivateKey65, NewPublicKey65, }, { "Count/ML-DSA-87/64", "B5C07ECEFE9E7C3B885F", "5D22F4C40F6EEB96BB89", "D1D5C2D167D6E6290679", "54F0A9CB26F98B394A35", NewPrivateKey87, NewPublicKey87, }, { "Count/ML-DSA-87/65", "E8FC3C9FAD711DDA2946", "B6C4DC9B20CE5D0F4459", "3B435F7A2CE431C7AB8E", "E337495F08773F14FB26", NewPrivateKey87, NewPublicKey87, }, { "Count/ML-DSA-87/64", "151F80886D6CE8C3B428", "127972C33323FEFBF6B6", "C628CE94D2AA99AA50CF", "99B552B21432544248BF",...
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jan 08 17:58:32 GMT 2026
    - 660.3K bytes
    - Click Count (0)
  6. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    \u0000\u4000\u8008\u0000\u4000\u800e\u0000\u4000\u8016\u0000\u4000\u801c\u0000\u4000\u8021\u0000\u4000\u8028\u0000\u4000\u8030\u0000\u4000\u8037\u0000\u4000\u803d\u0000\u4000\u8049\u0000\u4000\u804f\u0000\u4000\u8054\u0000\u4000\u805b\u0000\u4000\u8064\u0000\u4000\u806a\u0000\u4000\u8072\u0000\u4000\u8078\u0000\u4000\u807d\u0000\u4000\u8084\u0000\u4000\u808c\u0000\u4000\u8095\u0000\u4000\u809b\u0000\u4000\u80a3\u0000\u4000\u80ad\u0000\u4000\u80b8\u0000\u4000\u80c0\u0000\u4000\u80cd\u0000\u4000\u...
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 06 20:41:51 GMT 2026
    - 290.5K bytes
    - Click Count (1)
  7. 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 (2020-02-29)
    
    * Add link to Release Notes from docs about pinning versions for deployment. PR [#1058](https://github.com/tiangolo/fastapi/pull/1058).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
Back to Top