Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 821 - 830 of 926 for Directly (0.36 seconds)

  1. android/guava-tests/benchmark/com/google/common/base/EnumsBenchmark.java

        sampleDataList.addAll(misses);
        Collections.shuffle(sampleDataList);
        sampleData = sampleDataList.toArray(new String[sampleDataList.size()]);
      }
    
      // Since we can't pass a concrete SomeEnum.class directly, we need to use a raw type.
      @SuppressWarnings("unchecked")
      @Benchmark
      boolean getIfPresent(int repetitions) {
        boolean retVal = false;
        for (int i = 0; i < repetitions; ++i) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 29.4K bytes
    - Click Count (0)
  2. docs/ja/docs/advanced/response-headers.md

    また、依存関係の中で `Response` パラメータを宣言し、その中でヘッダー(や Cookie)を設定することもできます。
    
    ## `Response` を直接返す { #return-a-response-directly }
    
    `Response` を直接返す場合にもヘッダーを追加できます。
    
    [Response を直接返す](response-directly.md) で説明したようにレスポンスを作成し、ヘッダーを追加のパラメータとして渡します:
    
    {* ../../docs_src/response_headers/tutorial001_py310.py hl[10:12] *}
    
    /// note | 技術詳細
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  3. tensorflow/BUILD

    # addition to this core set of ops, user libraries which are loaded (via
    # TF_LoadLibrary/tf.load_op_library) register their ops and kernels with this
    # shared object directly.
    #
    # For example, from Python tf.load_op_library loads a custom op library (via
    # dlopen() on Linux), the library finds libtensorflow_framework.so (no
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Mar 24 21:00:18 GMT 2026
    - 53.1K bytes
    - Click Count (0)
  4. docs/de/docs/advanced/custom-response.md

    Standardmäßig gibt **FastAPI** JSON-Responses zurück.
    
    Sie können dies überschreiben, indem Sie direkt eine `Response` zurückgeben, wie in [Eine Response direkt zurückgeben](response-directly.md) gezeigt.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  5. docs/fr/docs/advanced/custom-response.md

    Par défaut, **FastAPI** renvoie des réponses JSON.
    
    Vous pouvez le remplacer en renvoyant une `Response` directement comme vu dans [Renvoyer une Response directement](response-directly.md).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  6. CHANGELOG/CHANGELOG-1.21.md

    ### Container Images
    
    All container images are available as manifest lists and support the described
    architectures. It is also possible to pull a specific architecture directly by
    adding the "-$ARCH" suffix  to the container image name.
    
    name | architectures
    ---- | -------------
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Fri Oct 14 07:03:14 GMT 2022
    - 367.3K bytes
    - Click Count (0)
  7. docs/tr/docs/advanced/custom-response.md

    # Özel Response - HTML, Stream, File ve Diğerleri { #custom-response-html-stream-file-others }
    
    Varsayılan olarak **FastAPI**, JSON response'lar döndürür.
    
    Bunu, [Doğrudan bir Response döndür](response-directly.md) bölümünde gördüğünüz gibi doğrudan bir `Response` döndürerek geçersiz kılabilirsiniz.
    
    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)
  8. tests/generics_test.go

    		{Association: "Profiles", Type: clause.OpUpdate},
    	}
    
    	// In practice, each Association would be processed individually
    	// since []clause.Association doesn't implement AssociationAssigner directly
    	for i, assoc := range associations {
    		assigns := assoc.AssociationAssignments()
    		if len(assigns) != 1 {
    			t.Errorf("Association %d should return one assignment, got %v", i, len(assigns))
    		}
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Tue Dec 30 08:11:14 GMT 2025
    - 34.9K bytes
    - Click Count (0)
  9. doc/go_mem.html

    then <i>w</i> is synchronized before <i>r</i>.
    Informally, the synchronized before relation is a subset of the implied total order
    mentioned in the previous paragraph,
    limited to the information that <i>W</i> directly observes.
    </p>
    
    <p>
    The <i>happens before</i> relation is defined as the transitive closure of the
    union of the sequenced before and synchronized before relations.
    </p>
    
    <p>
    <b>Requirement 3</b>:
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue Aug 05 15:41:37 GMT 2025
    - 26.6K bytes
    - Click Count (0)
  10. docs/zh/docs/advanced/custom-response.md

    # 自定义响应 - HTML、流、文件等 { #custom-response-html-stream-file-others }
    
    默认情况下,**FastAPI** 会返回 JSON 响应。
    
    你可以像在 [直接返回响应](response-directly.md) 中那样,直接返回 `Response` 来重载它。
    
    但如果你直接返回一个 `Response`(或其任意子类,比如 `JSONResponse`),返回的数据不会自动转换(即使你声明了 `response_model`),也不会自动生成文档(例如,在生成的 OpenAPI 中,HTTP 头 `Content-Type` 里的特定「媒体类型」不会被包含)。
    
    你还可以在 *路径操作装饰器* 中通过 `response_class` 参数声明要使用的 `Response`(例如任意 `Response` 子类)。
    
    你从 *路径操作函数* 中返回的内容将被放在该 `Response` 中。
    
    /// note | 注意
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.4K bytes
    - Click Count (0)
Back to Top