Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for buna (0.2 sec)

  1. src/main/resources/fess_indices/fess/tr/stopwords.txt

    acaba
    altmış
    altı
    ama
    ancak
    arada
    aslında
    ayrıca
    bana
    bazı
    belki
    ben
    benden
    beni
    benim
    beri
    beş
    bile
    bin
    bir
    birçok
    biri
    birkaç
    birkez
    birşey
    birşeyi
    biz
    bize
    bizden
    bizi
    bizim
    böyle
    böylece
    bu
    buna
    bunda
    bundan
    bunlar
    bunları
    bunların
    bunu
    bunun
    burada
    çok
    çünkü
    da
    daha
    dahi
    de
    defa
    değil
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 1.5K bytes
    - Viewed (1)
  2. docs/tr/docs/features.md

    **FastAPI** sana bunları sağlıyor
    
    ### Açık standartları temel alır
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  3. docs/tr/docs/async.md

    * sonuçları döndürmek için bir veritabanı sorgusu
    * vb.
    
    Yürütme süresi çoğunlukla  <abbr title="Input ve Output (Giriş ve Çıkış)">I/O</abbr> işlemleri beklenerek tüketildiğinden bunlara "I/O bağlantılı" işlemler denir.
    
    Buna "asenkron" denir, çünkü bilgisayar/program yavaş görevle "senkronize" olmak zorunda değildir, görevin tam olarak biteceği anı bekler, hiçbir şey yapmadan, görev sonucunu alabilmek ve çalışmaya devam edebilmek için .
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 21.9K bytes
    - Viewed (0)
  4. docs/az/docs/index.md

    İndi aşağıdakı sətri dəyişdirməyə çalışın:
    
    ```Python
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    ...bundan:
    
    ```Python
            ... "item_name": item.name ...
    ```
    
    ...buna:
    
    ```Python
            ... "item_price": item.price ...
    ```
    
    ...və redaktorun məlumat tiplərini bildiyini və avtomatik tamaladığını görəcəksiniz:
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  5. docs/tr/docs/alternatives.md

    !!! check "**FastAPI**'a nasıl ilham verdi?"
        * Basit ve sezgisel bir API'ya sahip olmalı.
        * HTTP metot isimlerini (işlemlerini) anlaşılır olacak bir şekilde, direkt kullanmalı.
        * Mantıklı varsayılan değerlere ve buna rağmen güçlü bir özelleştirme desteğine sahip olmalı.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 28.8K bytes
    - Viewed (0)
  6. docs/tr/docs/index.md

    Şimdi aşağıdaki satırı değiştirmeyi deneyin:
    
    ```Python
        return {"item_name": item.name, "item_id": item_id}
    ```
    
    ...bundan:
    
    ```Python
            ... "item_name": item.name ...
    ```
    
    ...buna:
    
    ```Python
            ... "item_price": item.price ...
    ```
    
    ...ve editörünün veri tiplerini bildiğini ve otomatik tamamladığını göreceksiniz:
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 22K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_aws/fess.json

              "stopwords": ["acaba", "altmış", "altı", "ama", "ancak", "arada", "aslında", "ayrıca", "bana", "bazı", "belki", "ben", "benden", "beni", "benim", "beri", "beş", "bile", "bin", "bir", "birçok", "biri", "birkaç", "birkez", "birşey", "birşeyi", "biz", "bize", "bizden", "bizi", "bizim", "böyle", "böylece", "bu", "buna", "bunda", "bundan", "bunlar", "bunları", "bunların", "bunu", "bunun", "burada", "çok", "çünkü", "da", "daha", "dahi", "de", "defa", "değil", "diğer", "diye", "doksan",...
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  8. docs/es/docs/python-types.md

    ### Clases como tipos
    
    También puedes declarar una clase como el tipo de una variable.
    
    Digamos que tienes una clase `Person`con un nombre:
    
    ```Python hl_lines="1-3"
    {!../../../docs_src/python_types/tutorial009.py!}
    ```
    
    Entonces puedes declarar una variable que sea de tipo `Person`:
    
    ```Python hl_lines="6"
    {!../../../docs_src/python_types/tutorial009.py!}
    ```
    
    Una vez más tendrás todo el soporte del editor:
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  9. docs/es/docs/async.md

    * el contenido de un archivo en disco para ser leído por el sistema y entregado al programa
    * los contenidos que tu programa da al sistema para ser escritos en disco
    * una operación relacionada con una API remota
    * una operación de base de datos
    * el retorno de resultados de una consulta de base de datos
    * etc.
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/ro/stopwords.txt

    ale
    alea
    ălea
    altceva
    altcineva
    am
    ar
    are
    aş
    aşadar
    asemenea
    asta
    ăsta
    astăzi
    astea
    ăstea
    ăştia
    asupra
    aţi
    au
    avea
    avem
    aveţi
    azi
    bine
    bucur
    bună
    ca
    că
    căci
    când
    care
    cărei
    căror
    cărui
    cât
    câte
    câţi
    către
    câtva
    ce
    cel
    ceva
    chiar
    cînd
    cine
    cineva
    cît
    cîte
    cîţi
    cîtva
    contra
    cu
    cum
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 1.4K bytes
    - Viewed (0)
Back to top