Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 27 for adim (0.04 seconds)

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

  1. docs/tr/docs/tutorial/first-steps.md

    🐔 Ready the chicken! Your app is ready at https://myapp.fastapicloud.dev
    ```
    
    </div>
    
    Bu kadar! Artık uygulamanıza o URL üzerinden erişebilirsiniz. ✨
    
    ## Adım Adım Özetleyelim { #recap-step-by-step }
    
    ### Adım 1: `FastAPI` import edin { #step-1-import-fastapi }
    
    {* ../../docs_src/first_steps/tutorial001_py310.py hl[1] *}
    
    `FastAPI`, API'nız için tüm işlevselliği sağlayan bir Python class'ıdır.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.4K bytes
    - Click Count (0)
  2. docs/tr/docs/deployment/https.md

    ## Geliştiriciler İçin HTTPS { #https-for-developers }
    
    Burada, bir HTTPS API’nin adım adım nasıl görünebileceğine dair, özellikle geliştiriciler için önemli fikirlere odaklanan bir örnek var.
    
    ### Domain Adı { #domain-name }
    
    Muhtemelen her şey, bir **domain adı** **temin etmenizle** başlar. Sonra bunu bir DNS server’ında (muhtemelen aynı cloud provider’ınızda) yapılandırırsınız.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  3. docs/tr/docs/advanced/security/oauth2-scopes.md

    {* ../../docs_src/security/tutorial005_an_py310.py hl[5,9,13,47,65,106,108:116,122:126,130:136,141,157] *}
    
    Şimdi bu değişiklikleri adım adım inceleyelim.
    
    ## OAuth2 Security scheme { #oauth2-security-scheme }
    
    İlk değişiklik, artık OAuth2 security scheme'ini iki adet kullanılabilir scope ile tanımlamamız: `me` ve `items`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  4. docs/tr/docs/deployment/docker.md

        ///
    
        `--upgrade` seçeneği, paketler zaten yüklüyse `pip`'e onları yükseltmesini söyler.
    
        Bir önceki adım (dosyayı kopyalama) **Docker cache** tarafından tespit edilebildiği için, bu adım da uygun olduğunda **Docker cache'i kullanır**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 29.6K bytes
    - Click Count (0)
  5. tensorflow/c/eager/dlpack.cc

      dlm_tensor->dl_tensor.device = tf_dlm_context;
      int ndim = tensor->dims();
      dlm_tensor->dl_tensor.ndim = ndim;
      dlm_tensor->dl_tensor.data = tf_dlm_data;
      dlm_tensor->dl_tensor.dtype = tf_dlm_type;
    
      std::vector<int64_t>* shape_arr = &tf_dlm_tensor_ctx->shape;
      std::vector<int64_t>* stride_arr = &tf_dlm_tensor_ctx->strides;
      shape_arr->resize(ndim);
      stride_arr->resize(ndim, 1);
      for (int i = 0; i < ndim; i++) {
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Thu Mar 13 23:41:52 GMT 2025
    - 13K bytes
    - Click Count (0)
  6. docs/tr/docs/advanced/generate-clients.md

    Bu durumda, her operation ID'nin **benzersiz** olduğundan başka bir şekilde emin olmanız gerekir.
    
    Örneğin, her *path operation*'ın bir tag'i olmasını sağlayabilir ve operation ID'yi **tag** ve *path operation* **adı**na (function adı) göre üretebilirsiniz.
    
    ### Benzersiz ID Üreten Özel Fonksiyon { #custom-generate-unique-id-function }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  7. src/main/resources/fess_message_tr.properties

    # ======
    errors.login_error = Geçersiz kullanıcı adı veya şifre.
    errors.sso_login_error=SSO oturum açma işlemi başarısız oldu.
    errors.could_not_find_log_file = {0} bulunamadı.
    errors.failed_to_start_crawl_process = Tarama işlemi başlatılamadı.
    errors.invalid_design_jsp_file_name = Geçersiz JSP dosyası.
    errors.design_jsp_file_does_not_exist = JSP dosyası mevcut değil.
    errors.design_file_name_is_not_found = Dosya adı belirtilmedi.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13K bytes
    - Click Count (0)
  8. docs/tr/docs/virtual-environments.md

    /// tip | İpucu
    
    Virtual environment'i [`uv`](https://github.com/astral-sh/uv) ile oluşturduysanız, bunu zaten sizin için yaptı; bu adımı atlayabilirsiniz. 😎
    
    ///
    
    /// tip | İpucu
    
    Bunu virtual environment'i oluşturduktan hemen sonra **bir kez** yapın.
    
    ///
    
    <div class="termy">
    
    ```console
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.5K bytes
    - Click Count (0)
  9. tensorflow/c/eager/c_api.cc

      if (h == nullptr) {
        status->status = tensorflow::errors::InvalidArgument("Invalid handle");
        return -1;
      }
    
      int64_t dim = -1;
      status->status = tensorflow::unwrap(h)->Dim(dim_index, &dim);
      return dim;
    }
    
    const char* TFE_TensorHandleDeviceName(TFE_TensorHandle* h, TF_Status* status) {
      if (h == nullptr) {
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Nov 07 05:55:21 GMT 2025
    - 43.9K bytes
    - Click Count (0)
  10. docs/tr/docs/python-types.md

    {* ../../docs_src/python_types/tutorial008_py310.py hl[1] *}
    
    Bu şu anlama gelir:
    
    * `prices` değişkeni bir `dict`'tir:
        * Bu `dict`'in key'leri `str` tipindedir (örneğin her bir öğenin adı).
        * Bu `dict`'in value'ları `float` tipindedir (örneğin her bir öğenin fiyatı).
    
    #### Union { #union }
    
    Bir değişkenin **birkaç tipten herhangi biri** olabileceğini bildirebilirsiniz; örneğin bir `int` veya bir `str`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
Back to Top