Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for 47 (0.19 sec)

  1. api/go1.19.txt

    pkg debug/elf, const R_LARCH_ADD32 = 50 #46229
    pkg debug/elf, const R_LARCH_ADD32 R_LARCH #46229
    pkg debug/elf, const R_LARCH_ADD64 = 51 #46229
    pkg debug/elf, const R_LARCH_ADD64 R_LARCH #46229
    pkg debug/elf, const R_LARCH_ADD8 = 47 #46229
    pkg debug/elf, const R_LARCH_ADD8 R_LARCH #46229
    pkg debug/elf, const R_LARCH_COPY = 4 #46229
    pkg debug/elf, const R_LARCH_COPY R_LARCH #46229
    pkg debug/elf, const R_LARCH_IRELATIVE = 12 #46229
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  2. api/go1.11.txt

    pkg debug/elf, const R_RISCV_GNU_VTINHERIT = 41
    pkg debug/elf, const R_RISCV_GNU_VTINHERIT R_RISCV
    pkg debug/elf, const R_RISCV_GOT_HI20 = 20
    pkg debug/elf, const R_RISCV_GOT_HI20 R_RISCV
    pkg debug/elf, const R_RISCV_GPREL_I = 47
    pkg debug/elf, const R_RISCV_GPREL_I R_RISCV
    pkg debug/elf, const R_RISCV_GPREL_S = 48
    pkg debug/elf, const R_RISCV_GPREL_S R_RISCV
    pkg debug/elf, const R_RISCV_HI20 = 26
    pkg debug/elf, const R_RISCV_HI20 R_RISCV
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  3. docs/en/docs/tutorial/sql-databases.md

    Import `Base` from `database` (the file `database.py` from above).
    
    Create classes that inherit from it.
    
    These classes are the SQLAlchemy models.
    
    ```Python hl_lines="4  7-8  18-19"
    {!../../../docs_src/sql_databases/sql_app/models.py!}
    ```
    
    The `__tablename__` attribute tells SQLAlchemy the name of the table to use in the database for each of these models.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 29.6K bytes
    - Viewed (0)
  4. api/go1.10.txt

    pkg debug/elf, const R_ARM_THM_MOVT_BREL = 88
    pkg debug/elf, const R_ARM_THM_MOVT_BREL R_ARM
    pkg debug/elf, const R_ARM_THM_MOVT_PREL = 50
    pkg debug/elf, const R_ARM_THM_MOVT_PREL R_ARM
    pkg debug/elf, const R_ARM_THM_MOVW_ABS_NC = 47
    pkg debug/elf, const R_ARM_THM_MOVW_ABS_NC R_ARM
    pkg debug/elf, const R_ARM_THM_MOVW_BREL = 89
    pkg debug/elf, const R_ARM_THM_MOVW_BREL R_ARM
    pkg debug/elf, const R_ARM_THM_MOVW_BREL_NC = 87
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  5. internal/s3select/csv/reader_contrib_test.go

    			wantTenFields: `3389224,2,2014-03-26 00:26:15,2014-03-26 00:28:38,N,1,-73.950431823730469,40.792251586914063,-73.938949584960937,40.794425964355469,1,0.84,4.5,0.5,0.5,1,0,,,6.5,1,1,75,74,green,0.00,0.0,0.0,36,...
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Sep 19 18:05:16 GMT 2022
    - 38.5K bytes
    - Viewed (0)
  6. docs/zh/docs/tutorial/sql-databases.md

        而 Pydantic 也使用“模型”这个术语 来指代不同的东西,即数据验证、转换以及文档类和实例。
    
    从`database`(来自上面的`database.py`文件)导入`Base`。
    
    创建从它继承的类。
    
    这些类就是 SQLAlchemy 模型。
    
    ```Python hl_lines="4  7-8  18-19"
    {!../../../docs_src/sql_databases/sql_app/models.py!}
    ```
    
    这个`__tablename__`属性是用来告诉 SQLAlchemy 要在数据库中为每个模型使用的数据库表的名称。
    
    ### 创建模型属性/列
    
    现在创建所有模型(类)属性。
    
    这些属性中的每一个都代表其相应数据库表中的一列。
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 27K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/LongMath.java

                  | (1L << (29 - 2))
                  | (1L << (31 - 2))
                  | (1L << (37 - 2))
                  | (1L << (41 - 2))
                  | (1L << (43 - 2))
                  | (1L << (47 - 2))
                  | (1L << (53 - 2))
                  | (1L << (59 - 2))
                  | (1L << (61 - 2));
          // Look up n within the mask.
          return ((mask >> ((int) n - 2)) & 1) != 0;
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 44.6K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/sql-databases.md

        ✋️ Pydantic ⚙️ ⚖ "**🏷**" 🔗 🕳 🎏, 💽 🔬, 🛠️, &amp; 🧾 🎓 &amp; 👐.
    
    🗄 `Base` ⚪️➡️ `database` (📁 `database.py` ⚪️➡️ 🔛).
    
    ✍ 🎓 👈 😖 ⚪️➡️ ⚫️.
    
    👫 🎓 🇸🇲 🏷.
    
    ```Python hl_lines="4  7-8  18-19"
    {!../../../docs_src/sql_databases/sql_app/models.py!}
    ```
    
    `__tablename__` 🔢 💬 🇸🇲 📛 🏓 ⚙️ 💽 🔠 👫 🏷.
    
    ### ✍ 🏷 🔢/🏓
    
    🔜 ✍ 🌐 🏷 (🎓) 🔢.
    
    🔠 👫 🔢 🎨 🏓 🚮 🔗 💽 🏓.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 25.2K bytes
    - Viewed (1)
  9. api/go1.5.txt

    pkg debug/elf, const R_PPC64_TLSLD = 108
    pkg debug/elf, const R_PPC64_TLSLD R_PPC64
    pkg debug/elf, const R_PPC64_TOC = 51
    pkg debug/elf, const R_PPC64_TOC R_PPC64
    pkg debug/elf, const R_PPC64_TOC16 = 47
    pkg debug/elf, const R_PPC64_TOC16 R_PPC64
    pkg debug/elf, const R_PPC64_TOC16_DS = 63
    pkg debug/elf, const R_PPC64_TOC16_DS R_PPC64
    pkg debug/elf, const R_PPC64_TOC16_HA = 50
    pkg debug/elf, const R_PPC64_TOC16_HA R_PPC64
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.1.tgz

    IfNotPresent imagePullSecrets: [] # - name: "image-pull-secret" ## Set default image, imageTag, and imagePullPolicy for the `mc` (the minio ## client used to create a default bucket). ## mcImage: repository: quay.io/minio/mc tag: RELEASE.2022-11-07T23-47-39Z pullPolicy: IfNotPresent ## minio mode, i.e. standalone or distributed mode: distributed ## other supported values are "standalone" ## Additional labels to include with deployment or statefulset additionalLabels: {} ## Additional annotations to...
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Nov 13 10:04:51 GMT 2022
    - 19.8K bytes
    - Viewed (0)
Back to top