Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 665 for normais (0.06 seconds)

  1. docs/tr/docs/advanced/behind-a-proxy.md

    Buraya kadar her şey normal çalışır.
    
    Ancak entegre doküman arayüzünü (frontend) açtığınızda, OpenAPI şemasını `/api/v1/openapi.json` yerine `/openapi.json` üzerinden almayı bekler.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  2. architecture/standards/0002-avoid-using-java-serialization.md

    ## Decision
    
    We do not use Java serialization.
    Instead, we use custom serialization where we explicitly describe how data objects should be serialized and deserialized.
    
    For internal purposes, we use binary formats for their brevity.
    We use the `Serializer` abstraction to separate the actual implementation of serialization from its uses.
    
    When sharing data with external tools, we use JSON.
    
    ## Consequences
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 14:05:45 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  3. docs/tr/docs/advanced/async-tests.md

    ## HTTPX { #httpx }
    
    **FastAPI** uygulamanız `async def` yerine normal `def` fonksiyonları kullanıyor olsa bile, altta yatan yapı hâlâ bir `async` uygulamadır.
    
    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)
  4. .editorconfig

    ij_groovy_array_initializer_right_brace_on_new_line = true
    ij_groovy_array_initializer_wrap = on_every_item
    ij_groovy_assert_statement_wrap = on_every_item
    ij_groovy_assignment_wrap = on_every_item
    ij_groovy_binary_operation_wrap = normal
    ij_groovy_blank_lines_after_class_header = 0
    ij_groovy_blank_lines_after_imports = 1
    ij_groovy_blank_lines_after_package = 1
    ij_groovy_blank_lines_around_class = 1
    ij_groovy_blank_lines_around_field = 0
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 10 14:05:55 GMT 2021
    - 9K bytes
    - Click Count (0)
  5. compat/maven-compat/src/test/resources/inheritance-repo/t12/p0/p1/pom.xml

      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
              <execution>
                <id>normal</id>
    
                <goals>
                  <goal>compile</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 610 bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/dependencies/dependencies-with-yield.md

    Response'dan sonra `yield` satırını takip eden kod çalıştırılır:
    
    {* ../../docs_src/dependencies/tutorial007_py310.py hl[5:6] *}
    
    /// tip | İpucu
    
    `async` ya da normal fonksiyonlar kullanabilirsiniz.
    
    **FastAPI**, normal dependency'lerde olduğu gibi her ikisinde de doğru şekilde davranır.
    
    ///
    
    ## `yield` ve `try` ile Bir Dependency { #a-dependency-with-yield-and-try }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java

                // Use test runner and classpath from "normal" yaml source set
                testTask.setTestClassesDirs(
                    yamlTestSourceSet.getOutput().getClassesDirs().plus(yamlCompatTestSourceSet.getOutput().getClassesDirs())
                );
                testTask.setClasspath(
                    yamlCompatTestSourceSet.getRuntimeClasspath()
                        // remove the "normal" api and tests
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 16:26:11 GMT 2021
    - 11.7K bytes
    - Click Count (0)
  8. docs/ja/docs/how-to/extending-openapi.md

    # OpenAPI の拡張 { #extending-openapi }
    
    生成された OpenAPI スキーマを変更する必要がある場合があります。
    
    このセクションではその方法を説明します。
    
    ## 通常のプロセス { #the-normal-process }
    
    通常(デフォルト)のプロセスは次のとおりです。
    
    `FastAPI` アプリケーション(インスタンス)には、OpenAPI スキーマを返すことが期待される `.openapi()` メソッドがあります。
    
    アプリケーションオブジェクトの作成時に、`/openapi.json`(または `openapi_url` に設定したパス)への path operation が登録されます。
    
    これは単に、アプリケーションの `.openapi()` メソッドの結果を含む JSON レスポンスを返します。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  9. tests/test_jsonable_encoder.py

        def __iter__(self):
            raise NotImplementedError()
    
        @property
        def __dict__(self):
            raise NotImplementedError()
    
    
    class RoleEnum(Enum):
        admin = "admin"
        normal = "normal"
    
    
    class ModelWithConfig(BaseModel):
        role: RoleEnum | None = None
    
        model_config = {"use_enum_values": True}
    
    
    class ModelWithAlias(BaseModel):
        foo: str = Field(alias="Foo")
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

          log.put("normal task running")
          return@schedule -1L
        }
    
        queue.idleLatch().await(500, TimeUnit.MILLISECONDS)
    
        assertThat(log.take()).isEqualTo("failing task running")
        assertThat(log.take()).isEqualTo("uncaught exception: java.lang.RuntimeException: boom!")
        assertThat(log.take()).isEqualTo("normal task running")
        assertThat(log).isEmpty()
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 3.5K bytes
    - Click Count (0)
Back to Top