Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 116 for entered (0.07 seconds)

  1. docs/tr/docs/benchmarks.md

        * FastAPI'yi karşılaştırıyorsanız, Flask-apispec, NestJS, Molten vb. veri doğrulama, serialization ve dokümantasyon sağlayan bir web uygulaması framework'ü (veya araç seti) ile karşılaştırın. Entegre otomatik veri doğrulama, serialization ve dokümantasyona sahip framework'ler....
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4K bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/UserManual.java

        /**
         * Additional resources to include in the final docs
         */
        public abstract ConfigurableFileCollection getResources();
    
        /**
         * A collection of the final rendered user manual
         */
        public abstract ConfigurableFileCollection getRenderedDocumentation();
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 22:33:18 GMT 2026
    - 1.6K bytes
    - Click Count (0)
  3. docs/tr/docs/advanced/path-operation-advanced-configuration.md

    Örneğin bu uygulamada, FastAPI’nin Pydantic modellerinden JSON Schema çıkarmaya yönelik entegre işlevselliğini ve JSON için otomatik doğrulamayı kullanmıyoruz. Hatta request content type’ını JSON değil, YAML olarak tanımlıyoruz:
    
    {* ../../docs_src/path_operation_advanced_configuration/tutorial007_py310.py hl[15:20, 22] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  4. docs/tr/docs/advanced/middleware.md

    app = FastAPI()
    
    app.add_middleware(UnicornMiddleware, some_config="rainbow")
    ```
    
    `app.add_middleware()` ilk argüman olarak bir middleware class'ı alır ve middleware'e aktarılacak ek argümanları da kabul eder.
    
    ## Entegre middleware'ler { #integrated-middlewares }
    
    **FastAPI**, yaygın kullanım senaryoları için birkaç middleware içerir; şimdi bunları nasıl kullanacağımıza bakacağız.
    
    /// note | Teknik Detaylar
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  5. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PropertyContributor.java

        /**
         * Invoked just before session is created with proto session instance. The proto session contains user and
         * system properties collected so far, along with other information. This method should return altered
         * (contributions applied) user properties, not only the "new" or "added" properties!
         *
         * @param protoSession The proto session, never {@code null}.
         * @return The user properties with contributions.
         */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Nov 20 19:58:27 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  6. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       */
      @CanIgnoreReturnValue
      @Override
      public boolean offer(E e) {
        checkNotNull(e);
        Monitor monitor = this.monitor;
        if (monitor.enterIf(notFull)) {
          try {
            insert(e);
            return true;
          } finally {
            monitor.leave();
          }
        } else {
          return false;
        }
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 22.4K bytes
    - Click Count (0)
  7. docs/tr/docs/alternatives.md

    /// check | **FastAPI**'a ilham olan
    
    API spesifikasyonları için özel bir şema yerine açık bir standart benimsemek ve kullanmak.
    
    Ve standartlara dayalı kullanıcı arayüzü araçlarını entegre etmek:
    
    * [Swagger UI](https://github.com/swagger-api/swagger-ui)
    * [ReDoc](https://github.com/Rebilly/ReDoc)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 24K bytes
    - Click Count (0)
  8. docs/tr/docs/advanced/async-tests.md

    /// tip | İpucu
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  9. android/guava-tests/benchmark/com/google/common/collect/MultisetIteratorBenchmark.java

        Random random = new Random();
    
        int sizeRemaining = size;
    
        // TODO(kevinb): generate better test contents for multisets
        while (sizeRemaining > 0) {
          // The JVM will return interned values for small ints.
          Integer value = random.nextInt(1000) + 128;
          int count = min(random.nextInt(10) + 1, sizeRemaining);
          sizeRemaining -= count;
          hashMultiset.add(value, count);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 2.7K bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md

    ///
    
    /// info | Bilgi
    
    Bu örnekte uydurma özel header'lar olan `X-Key` ve `X-Token` kullanıyoruz.
    
    Ancak gerçek senaryolarda, security uygularken, entegre [Security yardımcı araçlarını (bir sonraki bölüm)](../security/index.md) kullanmak size daha fazla fayda sağlar.
    
    ///
    
    ## Dependency Hataları ve Return Değerleri { #dependencies-errors-and-return-values }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 3.3K bytes
    - Click Count (0)
Back to Top