Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1581 - 1590 of 3,731 for qint (0.02 sec)

  1. guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/Platform.java

        // start substituting the arguments into the '%s' placeholders
        StringBuilder builder = new StringBuilder(template.length() + 16 * args.length);
        int templateStart = 0;
        int i = 0;
        while (i < args.length) {
          int placeholderStart = template.indexOf("%s", templateStart);
          if (placeholderStart == -1) {
            break;
          }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  2. docs/em/docs/python-types.md

    ```
    
    ////
    
    //// tab | 🐍 3️⃣.9️⃣ &amp; 🔛
    
    ```Python hl_lines="1"
    {!> ../../docs_src/python_types/tutorial007_py39.py!}
    ```
    
    ////
    
    👉 ⛓:
    
    * 🔢 `items_t` `tuple` ⏮️ 3️⃣ 🏬, `int`, ➕1️⃣ `int`, &amp; `str`.
    * 🔢 `items_s` `set`, &amp; 🔠 🚮 🏬 🆎 `bytes`.
    
    ####  #️⃣
    
    🔬 `dict`, 👆 🚶‍♀️ 2️⃣ 🆎 🔢, 🎏 ❕.
    
    🥇 🆎 🔢 🔑 `dict`.
    
    🥈 🆎 🔢 💲 `dict`:
    
    //// tab | 🐍 3️⃣.6️⃣ &amp; 🔛
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Ascii.java

        int length = s1.length();
        if (s1 == s2) {
          return true;
        }
        if (length != s2.length()) {
          return false;
        }
        for (int i = 0; i < length; i++) {
          char c1 = s1.charAt(i);
          char c2 = s2.charAt(i);
          if (c1 == c2) {
            continue;
          }
          int alphaIndex = getAlphaIndex(c1);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Aug 02 13:50:22 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/body-nested-models.md

    ---
    
    Другой полезный случай - когда вы хотите чтобы ключи были другого типа данных, например, `int`.
    
    Именно это мы сейчас и увидим здесь.
    
    В этом случае вы принимаете `dict`, пока у него есть ключи типа `int` со значениями типа `float`:
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="7"
    {!> ../../docs_src/body_nested_models/tutorial009_py39.py!}
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. docs/ko/docs/tutorial/body-nested-models.md

    일부 타입의 키와 다른 타입의 값을 사용하여 `dict`로 본문을 선언할 수 있습니다.
    
    (Pydantic을 사용한 경우처럼) 유효한 필드/어트리뷰트 이름이 무엇인지 알 필요가 없습니다.
    
    아직 모르는 키를 받으려는 경우 유용합니다.
    
    ---
    
    다른 유용한 경우는 다른 타입의 키를 가질 때입니다. 예. `int`.
    
    여기서 그 경우를 볼 것입니다.
    
    이 경우, `float` 값을 가진 `int` 키가 있는 모든 `dict`를 받아들입니다:
    
    ```Python hl_lines="15"
    {!../../docs_src/body_nested_models/tutorial009.py!}
    ```
    
    /// tip | "팁"
    
    JSON은 오직 `str`형 키만 지원한다는 것을 염두에 두세요.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/body-nested-models.md

    This would be useful if you want to receive keys that you don't already know.
    
    ---
    
    Another useful case is when you want to have keys of another type (e.g., `int`).
    
    That's what we are going to see here.
    
    In this case, you would accept any `dict` as long as it has `int` keys with `float` values:
    
    //// tab | Python 3.9+
    
    ```Python hl_lines="7"
    {!> ../../docs_src/body_nested_models/tutorial009_py39.py!}
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. fastapi/types.py

    DecoratedCallable = TypeVar("DecoratedCallable", bound=Callable[..., Any])
    UnionType = getattr(types, "UnionType", Union)
    ModelNameMap = Dict[Union[Type[BaseModel], Type[Enum]], str]
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Dec 12 00:29:03 UTC 2023
    - 383 bytes
    - Viewed (0)
  8. docs_src/python_types/tutorial012.py

    from typing import Optional
    
    from pydantic import BaseModel
    
    
    class User(BaseModel):
        name: str
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 122 bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/google/MultisetElementSetTester.java

      @CollectionSize.Require(absent = ZERO)
      @CollectionFeature.Require(SUPPORTS_REMOVE)
      public void testElementSetRemovePropagatesToMultiset() {
        Set<E> elementSet = getMultiset().elementSet();
        int size = getNumElements();
        int expectedSize = size - getMultiset().count(e0());
        assertTrue(elementSet.remove(e0()));
        assertFalse(getMultiset().contains(e0()));
        assertEquals(expectedSize, getMultiset().size());
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/AbstractValueGraph.java

            return AbstractValueGraph.this.successors(node);
          }
    
          @Override
          public int degree(N node) {
            return AbstractValueGraph.this.degree(node);
          }
    
          @Override
          public int inDegree(N node) {
            return AbstractValueGraph.this.inDegree(node);
          }
    
          @Override
          public int outDegree(N node) {
            return AbstractValueGraph.this.outDegree(node);
          }
        };
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top