Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,259 for starete (0.04 sec)

  1. src/main/java/jcifs/internal/witness/WitnessClient.java

                            break;
                        }
                    }
                }
            }, scheduler);
    
            asyncNotifyTasks.put(registrationId, asyncTask);
            log.debug("Started async notification monitoring for {}", registrationId);
        }
    
        /**
         * Stops asynchronous notification monitoring for a registration.
         *
         * @param registrationId the registration ID
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  2. docs/pl/docs/index.md

    **Typer** to młodsze rodzeństwo FastAPI. Jego celem jest pozostanie **FastAPI aplikacji konsolowych** . ⌨️ 🚀
    
    ## Wymagania
    
    FastAPI oparty jest na:
    
    * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> dla części webowej.
    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> dla części obsługujących dane.
    
    ## Instalacja
    
    <div class="termy">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/index.md

                 to quit<b>)</b>
         <span style="background-color:#007166"><font color="#D3D7CF"> INFO </font></span>  Started reloader process <b>[</b><font color="#34E2E2"><b>383138</b></font><b>]</b> using WatchFiles
         <span style="background-color:#007166"><font color="#D3D7CF"> INFO </font></span>  Started server process <b>[</b><font color="#34E2E2"><b>383153</b></font><b>]</b>
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess_user.user/user.json

            "type" : "keyword"
          },
          "street" : {
            "type" : "keyword"
          },
          "postalCode" : {
            "type" : "keyword"
          },
          "physicalDeliveryOfficeName" : {
            "type" : "keyword"
          },
          "destinationIndicator" : {
            "type" : "keyword"
          },
          "internationaliSDNNumber" : {
            "type" : "keyword"
          },
          "state" : {
            "type" : "keyword"
          },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/request-files.md

    /// note | Technical Details
    
    You could also use `from starlette.responses import HTMLResponse`.
    
    **FastAPI** provides the same `starlette.responses` as `fastapi.responses` just as a convenience for you, the developer. But most of the available responses come directly from Starlette.
    
    ///
    
    ### Multiple File Uploads with Additional Metadata { #multiple-file-uploads-with-additional-metadata }
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  6. docs/ru/docs/index.md

    ## Зависимости
    
    FastAPI стоит на плечах гигантов:
    
    * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> для части связанной с вебом.
    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> для части связанной с данными.
    
    ## Установка
    
    <div class="termy">
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/testing.md

    ///
    
    /// note | Technische Details
    
    Sie könnten auch `from starlette.testclient import TestClient` verwenden.
    
    **FastAPI** stellt denselben `starlette.testclient` auch via `fastapi.testclient` bereit, als Annehmlichkeit für Sie, den Entwickler. Es kommt aber tatsächlich direkt von Starlette.
    
    ///
    
    /// tip | Tipp
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/main/config/es/fess_user_user.json

              },
              "roles" : {
                "type" : "keyword"
              },
              "roomNumber" : {
                "type" : "keyword"
              },
              "state" : {
                "type" : "keyword"
              },
              "street" : {
                "type" : "keyword"
              },
              "surname" : {
                "type" : "keyword"
              },
              "telephoneNumber" : {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakResponse.java

         * @return the lease key
         */
        public Smb2LeaseKey getLeaseKey() {
            return leaseKey;
        }
    
        /**
         * Gets the granted lease state from the break response
         * @return the lease state
         */
        public int getLeaseState() {
            return leaseState;
        }
    
        /**
         * Gets the lease flags from the break response
         * @return the lease flags
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  10. docs/id/docs/tutorial/first-steps.md

    `FastAPI` adalah class Python yang menyediakan semua fungsionalitas API anda.
    
    /// note | Detail Teknis
    
    `FastAPI` adalah class turunan langsung dari `Starlette`.
    
    Anda bisa menggunakan semua fungsionalitas <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> dengan `FastAPI` juga.
    
    ///
    
    ### Langkah 2: buat "instance" dari `FastAPI`
    
    {* ../../docs_src/first_steps/tutorial001.py hl[3] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Dec 12 21:46:36 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top