Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 117 for 34 (0.01 sec)

  1. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

      static final String E21 = "2-1";
      static final String E13 = "1-3";
      static final String E14 = "1-4";
      static final String E23 = "2-3";
      static final String E31 = "3-1";
      static final String E34 = "3-4";
      static final String E41 = "4-1";
      static final String E15 = "1-5";
      static final String EDGE_NOT_IN_GRAPH = "edgeNotInGraph";
    
      // TODO(user): Consider separating Strings that we've defined here to capture
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  2. docs/ru/docs/tutorial/path-params.md

    /// info | Дополнительная информация
    
    <a href="https://docs.python.org/3/library/enum.html" class="external-link" target="_blank">Перечисления (enum) доступны в Python</a> начиная с версии 3.4.
    
    ///
    
    /// tip | Подсказка
    
    Если интересно, то "AlexNet", "ResNet" и "LeNet" - это названия <abbr title="Технически, это архитектуры моделей глубокого обучения">моделей</abbr> машинного обучения.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial005.py hl[1,6:9] *}
    
    /// info
    
    <a href="https://docs.python.org/3/library/enum.html" class="external-link" target="_blank">Enumerationen (oder kurz Enums)</a> gibt es in Python seit Version 3.4.
    
    ///
    
    /// tip | Tipp
    
    Falls Sie sich fragen, was „AlexNet“, „ResNet“ und „LeNet“ ist, das sind Namen von <abbr title="Genau genommen, Deep-Learning-Modellarchitekturen">Modellen</abbr> für maschinelles Lernen.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/Crypto.java

            key8[1] = (byte) (key[0] << 7 | (key[1] & 0xFF) >>> 1);
            key8[2] = (byte) (key[1] << 6 | (key[2] & 0xFF) >>> 2);
            key8[3] = (byte) (key[2] << 5 | (key[3] & 0xFF) >>> 3);
            key8[4] = (byte) (key[3] << 4 | (key[4] & 0xFF) >>> 4);
            key8[5] = (byte) (key[4] << 3 | (key[5] & 0xFF) >>> 5);
            key8[6] = (byte) (key[5] << 2 | (key[6] & 0xFF) >>> 6);
            key8[7] = (byte) (key[6] << 1);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

            // Word count
            buffer[32] = 10; // 10 words = 20 bytes
    
            // Parameter words for transaction response
            // Total parameter count (2 bytes)
            buffer[33] = 0x00;
            buffer[34] = 0x00;
    
            // Total data count (2 bytes)
            buffer[35] = 0x00;
            buffer[36] = 0x00;
    
            // Reserved (2 bytes)
            buffer[37] = 0x00;
            buffer[38] = 0x00;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  6. docs/ru/docs/tutorial/security/first-steps.md

    Проверить это можно уже сейчас в интерактивной документации:
    
    <img src="/img/tutorial/security/image03.png">
    
    Мы пока не проверяем валидность токена, но для начала неплохо.
    
    ## Резюме
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jan 06 18:26:39 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/body-updates.md

    `item.dict(exclude_unset=True)`のように。
    
    これにより、`item`モデルの作成時に設定されたデータのみを持つ`dict`が生成され、デフォルト値は除外されます。
    
    これを使うことで、デフォルト値を省略して、設定された(リクエストで送られた)データのみを含む`dict`を生成することができます:
    
    {* ../../docs_src/body_updates/tutorial002.py hl[34] *}
    
    ### Pydanticの`update`パラメータ
    
    ここで、`.copy()`を用いて既存のモデルのコピーを作成し、`update`パラメータに更新するデータを含む`dict`を渡すことができます。
    
    `stored_item_model.copy(update=update_data)`のように:
    
    {* ../../docs_src/body_updates/tutorial002.py hl[35] *}
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. docs/tls/README.md

    * 3.1 [Use certgen to Generate a Certificate](#using-go)
    * 3.2 [Use OpenSSL to Generate a Certificate](#using-open-ssl)
    * 3.3 [Use OpenSSL (with IP address) to Generate a Certificate](#using-open-ssl-with-ip)
    * 3.4 [Use GnuTLS (for Windows) to Generate a Certificate](#using-gnu-tls)
    
    **Note:**
    
    * MinIO only supports keys and certificates in PEM format on Linux and Windows.
    * MinIO doesn't currently support PFX certificates.
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

        assertThat(map.keys()).containsExactly("bar", "foo", "bar", "bar").inOrder();
        map.keys().remove("bar"); // bar is no longer the first key!
        assertEquals("{foo=[2], bar=[3, 4]}", map.toString());
      }
    
      public void testLinkedValues() {
        Multimap<String, Integer> map = create();
        map.put("bar", 1);
        map.put("foo", 2);
        map.put("bar", 3);
        map.put("bar", 4);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/path-params.md

    /// info | informação
    
    <a href="https://docs.python.org/3/library/enum.html" class="external-link" target="_blank">Enumerations (ou enums) estão disponíveis no Python</a> desde a versão 3.4.
    
    ///
    
    /// tip | Dica
    
    
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top