Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1761 - 1770 of 1,829 for key7 (0.02 seconds)

  1. docs/zh-hant/docs/tutorial/sql-databases.md

        注意:我們在主鍵欄位使用 `int | None`,這樣在 Python 程式碼中我們可以「在沒有 `id` 的情況下建立物件」(`id=None`),假設資料庫在儲存時會「自動產生」。SQLModel 瞭解資料庫會提供 `id`,並且在資料庫綱要中「將該欄位定義為非空的 `INTEGER`」。詳情請見 [SQLModel 文件:主鍵](https://sqlmodel.tiangolo.com/tutorial/create-db-and-table/#primary-key-id)。
    
    * `Field(index=True)` 告訴 SQLModel 應為此欄位建立「SQL 索引」,以便在用此欄位過濾讀取資料時更快查詢。
    
        SQLModel 會知道宣告為 `str` 的欄位在 SQL 中會是 `TEXT`(或 `VARCHAR`,依資料庫而定)。
    
    ### 建立引擎 { #create-an-engine }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  2. okhttp/api/jvm/okhttp.api

    	public final fun directoryPath ()Lokio/Path;
    	public final fun evictAll ()V
    	public fun flush ()V
    	public final fun hitCount ()I
    	public final fun initialize ()V
    	public final fun isClosed ()Z
    	public static final fun key (Lokhttp3/HttpUrl;)Ljava/lang/String;
    	public final fun maxSize ()J
    	public final fun networkCount ()I
    	public final fun requestCount ()I
    	public final fun size ()J
    	public final fun urls ()Ljava/util/Iterator;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 10 21:47:20 GMT 2026
    - 72.3K bytes
    - Click Count (0)
  3. CHANGELOG/CHANGELOG-1.31.md

      `hostAliases` fields to mark the fields used as keys in those lists as either defaulted
      or required. ([#124553](https://github.com/kubernetes/kubernetes/pull/124553), [@pmalek](https://github.com/pmalek))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Nov 12 11:33:21 GMT 2025
    - 451.9K bytes
    - Click Count (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                         */
                        trans.connect();
                        tree = trans.getSmbSession(auth).getSmbTree(dr.share, service);
    
                        if (dr != start && dr.key != null) {
                            dr.map.put(dr.key, dr);
                        }
    
                        se = null;
    
                        break;
                    } catch (final IOException ioe) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 112.2K bytes
    - Click Count (0)
  5. docs/en/docs/alternatives.md

    This decoupling of parts, and being a "microframework" that could be extended to cover exactly what is needed was a key feature that I wanted to keep.
    
    Given the simplicity of Flask, it seemed like a good match for building APIs. The next thing to find was a "Django REST Framework" for Flask.
    
    /// check | Inspired **FastAPI** to
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 22.2K bytes
    - Click Count (0)
  6. api/go1.21.txt

    pkg log/slog, method (Value) String() string #56345
    pkg log/slog, method (Value) Time() time.Time #56345
    pkg log/slog, method (Value) Uint64() uint64 #56345
    pkg log/slog, type Attr struct #56345
    pkg log/slog, type Attr struct, Key string #56345
    pkg log/slog, type Attr struct, Value Value #56345
    pkg log/slog, type Handler interface, Enabled(context.Context, Level) bool #56345
    pkg log/slog, type Handler interface { Enabled, Handle, WithAttrs, WithGroup } #56345
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Click Count (0)
  7. docs/ja/docs/tutorial/sql-databases.md

    * `Field(index=True)` は、この列に対して SQL のインデックスを作成するよう SQLModel に指示します。これにより、この列でフィルタしてデータを読む場合に検索が高速になります。
    
        `str` と宣言されたものは、SQL の `TEXT`(データベースによっては `VARCHAR`)型の列になることを SQLModel は理解します。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 18K bytes
    - Click Count (0)
  8. docs/changelogs/changelog_2x.md

     * Permit a dangling semicolon in media type parsing.
    
    
    ## Version 1.x
    
    [Change log](changelog_1x.md)
    
    
     [brick]: https://noncombatant.org/2015/05/01/about-http-public-key-pinning/
     [interceptors]: https://square.github.io/okhttp/interceptors/
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 26.6K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/sql-databases.md

        **注意:** 我们为主键字段使用 `int | None`,这样在 Python 代码中我们可以在没有 `id`(`id=None`)的情况下创建对象,并假定数据库在保存时会生成它。SQLModel 会理解数据库会提供 `id`,并在数据库模式中将该列定义为非空的 `INTEGER`。详见 [SQLModel 关于主键的文档](https://sqlmodel.tiangolo.com/tutorial/create-db-and-table/#primary-key-id)。
    
    * `Field(index=True)` 会告诉 SQLModel 应该为此列创建一个 **SQL 索引**,这样在读取按此列过滤的数据时,程序能在数据库中进行更快的查找。
    
        SQLModel 会知道声明为 `str` 的内容将是类型为 `TEXT`(或 `VARCHAR`,具体取决于数据库)的 SQL 列。
    
    ### 创建引擎(Engine) { #create-an-engine }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 15.4K bytes
    - Click Count (0)
  10. cmd/object-api-multipart_test.go

    		// listMultipartResults - 31.
    		// checking listing with marker set to 3.
    		// `NextUploadIDMarker` is expected to be set on last uploadID in the result.
    		// `NextKeyMarker` is expected to be set on the last object key in the list.
    		{
    			MaxUploads:         3,
    			IsTruncated:        true,
    			NextUploadIDMarker: uploadIDs[6],
    			NextKeyMarker:      objectNames[2],
    			Uploads: []MultipartInfo{
    				{
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 89.4K bytes
    - Click Count (0)
Back to Top