Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 163 for isin (0.04 sec)

  1. docs/tr/docs/tutorial/path-params.md

    Bu sayede, **FastAPI**'ın bizzat kendisi <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a> sayfasından erişebileceğiniz alternatif (ReDoc kullanan) bir API dokümantasyonu sağlar:
    
    <img src="/img/tutorial/path-params/image02.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. docs/tr/docs/async.md

    Bunun yerine, "asenkron" bir sistem olarak, bir kez bittiğinde,  bilgisayarın / programın yapması gerekeni bitirmesi için biraz (birkaç mikrosaniye) sırada bekleyebilir ve ardından sonuçları almak için geri gelebilir ve onlarla çalışmaya devam edebilir.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. src/math/sincos.go

    	}
    
    	zz := z * z
    	cos = 1.0 - 0.5*zz + zz*zz*((((((_cos[0]*zz)+_cos[1])*zz+_cos[2])*zz+_cos[3])*zz+_cos[4])*zz+_cos[5])
    	sin = z + z*zz*((((((_sin[0]*zz)+_sin[1])*zz+_sin[2])*zz+_sin[3])*zz+_sin[4])*zz+_sin[5])
    	if j == 1 || j == 2 {
    		sin, cos = cos, sin
    	}
    	if cosSign {
    		cos = -cos
    	}
    	if sinSign {
    		sin = -sin
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. docs/tr/docs/python-types.md

    ```
    
    !!! info
        Daha fazla şey öğrenmek için <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic'i takip edin</a>.
    
    **FastAPI** tamamen Pydantic'e dayanmaktadır.
    
    Daha fazlasini görmek için [Tutorial - User Guide](tutorial/index.md){.internal-link target=_blank}.
    
    ##  **FastAPI** tip belirteçleri
    
    **FastAPI** birkaç şey yapmak için bu tür tip belirteçlerinden faydalanır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/math/cmplx/cmath_test.go

    		}
    	}
    }
    func TestAsin(t *testing.T) {
    	for i := 0; i < len(vc); i++ {
    		if f := Asin(vc[i]); !cSoclose(asin[i], f, 1e-14) {
    			t.Errorf("Asin(%g) = %g, want %g", vc[i], f, asin[i])
    		}
    	}
    	for _, v := range asinSC {
    		if f := Asin(v.in); !cAlike(v.want, f) {
    			t.Errorf("Asin(%g) = %g, want %g", v.in, f, v.want)
    		}
    		if math.IsNaN(imag(v.in)) || math.IsNaN(imag(v.want)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  6. docs/tr/docs/deployment/cloud.md

    # FastAPI Uygulamasını Bulut Sağlayıcılar Üzerinde Yayınlama
    
    FastAPI uygulamasını yayınlamak için hemen hemen **herhangi bir bulut sağlayıcıyı** kullanabilirsiniz.
    
    Büyük bulut sağlayıcıların çoğu FastAPI uygulamasını yayınlamak için kılavuzlara sahiptir.
    
    ## Bulut Sağlayıcılar - Sponsorlar
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 28 14:05:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/math/export_s390x_test.go

    // Export internal functions and variable for testing.
    var Log10NoVec = log10
    var CosNoVec = cos
    var CoshNoVec = cosh
    var SinNoVec = sin
    var SinhNoVec = sinh
    var TanhNoVec = tanh
    var Log1pNovec = log1p
    var AtanhNovec = atanh
    var AcosNovec = acos
    var AcoshNovec = acosh
    var AsinNovec = asin
    var AsinhNovec = asinh
    var ErfNovec = erf
    var ErfcNovec = erfc
    var AtanNovec = atan
    var Atan2Novec = atan2
    var CbrtNovec = cbrt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 08 19:52:30 UTC 2017
    - 732 bytes
    - Viewed (0)
  8. docs/tr/docs/tutorial/static-files.md

    * Bir `StaticFiles()` örneğini belirli bir yola bağlayın.
    
    ```Python hl_lines="2  6"
    {!../../../docs_src/static_files/tutorial001.py!}
    ```
    
    !!! note "Teknik Detaylar"
        Projenize dahil etmek için `from starlette.staticfiles import StaticFiles` kullanabilirsiniz.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 23:57:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. samples/bookinfo/swagger.yaml

            description: "Language of the book"
          author:
            type: "string"
            description: "Author of the book"
          ISBN-10:
            type: "string"
            description: "ISBN-10 of the book"
          ISBN-13:
            type: "string"
            description: "ISBN-13 of the book"
          year:
            type: "integer"
            format: "int32"
            description: "Year the book was first published in"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 17:00:23 UTC 2017
    - 6.2K bytes
    - Viewed (0)
  10. src/compress/flate/example_test.go

    <book>
    	<meta name="title" content="The Go Programming Language"/>
    	<meta name="authors" content="Alan Donovan and Brian Kernighan"/>
    	<meta name="published" content="2015-10-26"/>
    	<meta name="isbn" content="978-0134190440"/>
    	<data>...</data>
    </book>
    `
    
    	var b bytes.Buffer
    
    	// Compress the data using the specially crafted dictionary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 12 18:42:35 UTC 2016
    - 6.5K bytes
    - Viewed (0)
Back to top