- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 34 for Atan (0.07 seconds)
-
src/main/resources/fess_indices/fess/ca/stopwords.txt
ses seu seus seva seva seves si sobre sobretot sóc solament sols son són sons sota sou t'ha t'han t'he ta tal també tampoc tan tant tanta tantes teu teus teva teves ton tons tot tota totes tots un una unes uns us va vaig vam van vas veu vosaltres
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 19 06:31:02 GMT 2018 - 1.3K bytes - Click Count (0) -
api/go1.txt
pkg math, func Abs(float64) float64 pkg math, func Acos(float64) float64 pkg math, func Acosh(float64) float64 pkg math, func Asin(float64) float64 pkg math, func Asinh(float64) float64 pkg math, func Atan(float64) float64 pkg math, func Atan2(float64, float64) float64 pkg math, func Atanh(float64) float64 pkg math, func Cbrt(float64) float64 pkg math, func Ceil(float64) float64
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Aug 14 18:58:28 GMT 2013 - 1.7M bytes - Click Count (0) -
docs/tr/docs/advanced/stream-data.md
Yukarıdaki örneklerde veri baytları akıtıldı, ancak response'ta bir `Content-Type` header'ı yoktu; bu nedenle istemci hangi tür veriyi aldığını bilmiyordu. Akıttığınız veri türüne uygun `Content-Type` header'ını ayarlayan, `StreamingResponse`'tan türetilmiş özel bir alt sınıf (subclass) oluşturabilirsiniz. Örneğin, `media_type` özniteliğini kullanarak `Content-Type` header'ını `image/png` olarak ayarlayan bir `PNGStreamingResponse` oluşturabilirsiniz:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:51:35 GMT 2026 - 5.8K bytes - Click Count (0) -
docs/tr/docs/tutorial/middleware.md
/// note | Teknik Detaylar `from starlette.requests import Request` da kullanabilirdiniz. **FastAPI** bunu geliştirici olarak size kolaylık olsun diye sunar. Ancak doğrudan Starlette'tan gelir. /// ### `response`'tan Önce ve Sonra { #before-and-after-the-response } Herhangi bir *path operation* `request`'i almadan önce, `request` ile birlikte çalışacak kod ekleyebilirsiniz.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 4.3K bytes - Click Count (0) -
go.mod
github.com/minio/xxml v0.0.3 github.com/minio/zipindex v0.4.0 github.com/mitchellh/go-homedir v1.1.0 github.com/nats-io/nats-server/v2 v2.11.1 github.com/nats-io/nats.go v1.41.2 github.com/nats-io/stan.go v0.10.4 github.com/ncw/directio v1.0.5 github.com/nsqio/go-nsq v1.1.0 github.com/philhofer/fwd v1.2.0 github.com/pierrec/lz4/v4 v4.1.22 github.com/pkg/errors v0.9.1 github.com/pkg/sftp v1.13.9
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Oct 10 18:57:03 GMT 2025 - 12.2K bytes - Click Count (0) -
docs/es/docs/alternatives.md
/// note | Detalles Técnicos Usó [`uvloop`](https://github.com/MagicStack/uvloop) en lugar del loop `asyncio` por defecto de Python. Eso fue lo que lo hizo tan rápido. Claramente inspiró a Uvicorn y Starlette, que actualmente son más rápidos que Sanic en benchmarks abiertos. /// /// check | Inspiró a **FastAPI** a
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 24.5K bytes - Click Count (0) -
docs/tr/docs/tutorial/metadata.md
<img src="/img/tutorial/metadata/image02.png"> ### Tag sırası { #order-of-tags } Her tag metadata sözlüğünün listedeki sırası, doküman arayüzünde gösterilecek sırayı da belirler. Örneğin alfabetik sıralamada `users`, `items`'tan sonra gelirdi; ancak listedeki ilk sözlük olarak `users` metadata'sını eklediğimiz için, dokümanlarda önce o görünür. ## OpenAPI URL'si { #openapi-url } Varsayılan olarak OpenAPI şeması `/openapi.json` adresinden sunulur.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/en/data/people.yml
url: https://github.com/EmmanuelNiyonshuti - login: stan-dot count: 2 avatarUrl: https://avatars.githubusercontent.com/u/56644812?u=a7dd773084f1c17c5f05019cc25a984e24873691&v=4 url: https://github.com/stan-dot - login: Damon0603 count: 2 avatarUrl: https://avatars.githubusercontent.com/u/110039208?u=f24bf5c30317bc4959118d1b919587c473a865b6&v=4
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 15:47:21 GMT 2026 - 28.7K bytes - Click Count (0) -
docs/es/docs/tutorial/dependencies/index.md
* Imponer seguridad, autenticación, requisitos de roles, etc. * Y muchas otras cosas... Todo esto, mientras minimizas la repetición de código. ## Primeros Pasos { #first-steps } Veamos un ejemplo muy simple. Será tan simple que no es muy útil, por ahora. Pero de esta manera podemos enfocarnos en cómo funciona el sistema de **Inyección de Dependencias**. ### Crear una dependencia, o "dependable" { #create-a-dependency-or-dependable }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 10K bytes - Click Count (0) -
docs/es/docs/tutorial/body-nested-models.md
``` /// info | Información Nota cómo la clave `images` ahora tiene una lista de objetos de imagen. /// ## Modelos anidados profundamente { #deeply-nested-models } Puedes definir modelos anidados tan profundamente como desees: {* ../../docs_src/body_nested_models/tutorial007_py310.py hl[7,12,18,21,25] *} /// info | InformaciónCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 7.2K bytes - Click Count (0)