Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for Latin (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/en/docs/contributing.md

    #### Request a New Language
    
    Let's say that you want to request translations for a language that is not yet translated, not even some pages. For example, Latin.
    
    * The first step would be for you to find other 2 people that would be willing to be reviewing translation PRs for that language with you.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  2. src/bufio/scan.go

    // We avoid dependency on the unicode package, but check validity of the implementation
    // in the tests.
    func isSpace(r rune) bool {
    	if r <= '\u00FF' {
    		// Obvious ASCII ones: \t through \r plus space. Plus two Latin-1 oddballs.
    		switch r {
    		case ' ', '\t', '\n', '\v', '\f', '\r':
    			return true
    		case '\u0085', '\u00A0':
    			return true
    		}
    		return false
    	}
    	// High-valued ones.
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed May 21 18:05:26 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  3. docs/tr/docs/help-fastapi.md

        * Diğer fikirleri, yazıları ve oluşturduğum araçlarla ilgili içerikleri okuyun.
        * Yeni bir şey yayınladığımda görmek için beni takip edin.
    
    ## **FastAPI** hakkında tweet atın { #tweet-about-fastapi }
    
    [**FastAPI** hakkında tweet atın](https://x.com/compose/tweet?text=I'm loving @fastapi because... https://github.com/fastapi/fastapi) ve neden sevdiğinizi bana ve diğerlerine söyleyin. 🎉
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  4. docs/tr/docs/features.md

    Python type’larını nasıl kullanacağınıza dair 2 dakikalık bir hatırlatmaya ihtiyacınız varsa (FastAPI kullanmasanız bile) kısa eğitime göz atın: [Python Types](python-types.md).
    
    Türleriyle standart Python yazarsınız:
    
    ```Python
    from datetime import date
    
    from pydantic import BaseModel
    
    # Bir değişkeni str olarak belirt
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  5. docs/tr/docs/index.md

    ---
    
    "_REST API'lar geliştirmek için **modern bir framework** öğrenmek istiyorsanız, **FastAPI**'a bir göz atın [...] Hızlı, kullanımı ve öğrenmesi kolay [...]_"
    
    "_**API**'larımız için **FastAPI**'a geçtik [...] Bence hoşunuza gidecek [...]_"
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.2K bytes
    - Click Count (0)
  6. docs/tr/docs/alternatives.md

    ///
    
    ## Kıyaslamalar ve Hız { #benchmarks-and-speed }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 24K bytes
    - Click Count (0)
Back to Top