Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 83 for Su (0.01 seconds)

  1. tests/compose.yml

        command: |-
          /bin/sh -c 'set -euo pipefail;
          /usr/local/bin/entrypoint.sh gaussdb &
          counter=1;
          while [ "$$counter" -le 20 ]; do
            if su - omm -c "gsql -U omm -d postgres -c \"SELECT 1;\""; then
              echo "Creating database gorm...";
              su - omm -c "gsql -U omm -d postgres -c \"CREATE DATABASE gorm DBCOMPATIBILITY '\'PG\'';\"";
              echo "Database initialized successfully";
              break;
            fi;
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Mon Aug 04 04:07:30 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  2. KEYS.md

    VT86TmOB3WsAAlPdosW/ahAc2/XyiCxv5JEo8YpErBZ5TSgUy7lJNABS0JUVCeUC
    q/AAZ2TScOwRX8aXCeYASfRHOZCiWrWy5nMGGnXVs42MMIML9d+Hr37BCCFT3Gbw
    8WOTeGleE92sed5dBAjOPyQWP+IvYxF7zOyNs46RAVlJfg3G33VwEBQgJwLSl/sU
    YqSHe9QubbxI0fiMsTJdZ6/5fbsXVnMbGe4kQDZbDTgylotiHfMCMNefgb0+yA6F
    w+EHQeN/v/AtpcpT0w12AOpmlNy4+zPQE8Ai73gtJeTRpiuob3k1/JwvLHemB14C
    txBGiHAyYHCjPqTPyQUIikj+R8mecG/60RfSmGe3HW7Hpt907BNEcc4s4V9uvJPH
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Dec 04 14:29:13 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  3. .github/workflows/tests.yml

              if [ -t 0 ]; then
                TTY_FLAG="-t"
              else
                TTY_FLAG=""
              fi
              while [ $retry_count -lt $max_retries ]; do
                if docker exec -i "${container_name}" bash -c "su - omm -c 'gsql -U omm -c \"select 1;\"'" 
                then
                  echo "Creating database gorm..."
                  sql_file='/tmp/create_database.sql'
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Mon Mar 23 10:05:06 GMT 2026
    - 9K bytes
    - Click Count (0)
  4. docs/es/docs/deployment/manually.md

    Es equivalente a:
    
    ```Python
    from main import app
    ```
    
    ///
    
    Cada programa alternativo de servidor ASGI tendría un comando similar, puedes leer más en su respectiva documentación.
    
    /// warning | Advertencia
    
    Uvicorn y otros servidores soportan una opción `--reload` que es útil durante el desarrollo.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 7K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/debugging.md

    #### Daha fazla detay { #more-details }
    
    Dosyanızın adının `myapp.py` olduğunu varsayalım.
    
    Şu şekilde çalıştırırsanız:
    
    <div class="termy">
    
    ```console
    $ python myapp.py
    ```
    
    </div>
    
    Python tarafından otomatik oluşturulan, dosyanızın içindeki `__name__` adlı dahili değişkenin değeri `"__main__"` string'i olur.
    
    Dolayısıyla şu bölüm:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    çalışır.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  6. docs/tr/docs/fastapi-cli.md

    ```
    
    Bu `entrypoint`, `fastapi` komutuna app'i şu şekilde import etmesi gerektiğini söyler:
    
    ```python
    from main import app
    ```
    
    Kodunuz şu şekilde yapılandırılmışsa:
    
    ```
    .
    ├── backend
    │   ├── main.py
    │   ├── __init__.py
    ```
    
    O zaman `entrypoint`'i şu şekilde ayarlarsınız:
    
    ```toml
    [tool.fastapi]
    entrypoint = "backend.main:app"
    ```
    
    Bu da şu koda eşdeğerdir:
    
    ```python
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  7. docs/tr/docs/advanced/openapi-callbacks.md

    ```Python
    "{$callback_url}/invoices/{$request.body.id}"
    ```
    
    Yani API'nizin kullanıcısı (external geliştirici) sizin API'nize şu adrese bir request gönderirse:
    
    ```
    https://yourapi.com/invoices/?callback_url=https://www.external.org/events
    ```
    
    ve JSON body şu şekilde olursa:
    
    ```JSON
    {
        "id": "2expen51ve",
        "customer": "Mr. Richie Rich",
        "total": "9999"
    }
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/templates.md

    ```
    
    ### Template Context Değerleri { #template-context-values }
    
    Şu HTML içeriğinde:
    
    {% raw %}
    
    ```jinja
    Item ID: {{ id }}
    ```
    
    {% endraw %}
    
    ...gösterilecek olan `id`, sizin "context" olarak ilettiğiniz `dict` içinden alınır:
    
    ```Python
    {"id": id}
    ```
    
    Örneğin ID değeri `42` ise, şu şekilde render edilir:
    
    ```html
    Item ID: 42
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  9. docs/es/docs/advanced/openapi-webhooks.md

    Hay casos donde quieres decirle a los **usuarios** de tu API que tu aplicación podría llamar a *su* aplicación (enviando una request) con algunos datos, normalmente para **notificar** de algún tipo de **evento**.
    
    Esto significa que en lugar del proceso normal de tus usuarios enviando requests a tu API, es **tu API** (o tu aplicación) la que podría **enviar requests a su sistema** (a su API, su aplicación).
    
    Esto normalmente se llama un **webhook**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/handling-errors.md

    Client `http://example.com/items/foo` (bir `item_id` `"foo"`) isterse, HTTP status code olarak 200 ve şu JSON response’u alır:
    
    ```JSON
    {
      "item": "The Foo Wrestlers"
    }
    ```
    
    Ancak client `http://example.com/items/bar` (mevcut olmayan bir `item_id` `"bar"`) isterse, HTTP status code olarak 404 ("not found" hatası) ve şu JSON response’u alır:
    
    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip | İpucu
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.7K bytes
    - Click Count (0)
Back to Top