Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 356 for 13 (0.01 sec)

  1. docs/de/docs/python-types.md

    ////
    
    ### Klassen als Typen
    
    Sie können auch eine Klasse als Typ einer Variablen deklarieren.
    
    Nehmen wir an, Sie haben eine Klasse `Person`, mit einem Namen:
    
    {* ../../docs_src/python_types/tutorial010.py hl[1:3] *}
    
    Dann können Sie eine Variable vom Typ `Person` deklarieren:
    
    {* ../../docs_src/python_types/tutorial010.py hl[6] *}
    
    Und wiederum bekommen Sie die volle Editor-Unterstützung:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 18.9K bytes
    - Viewed (1)
  2. cmd/object-api-listobjects_test.go

    		// Marker is set to "obj1" in the testCase, (testCase 36).
    		12: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "obj2"},
    			},
    		},
    		// ListObjectsResult-13.
    		// Marker is set to "man" in the testCase, (testCase37).
    		13: {
    			IsTruncated: false,
    			Objects: []ObjectInfo{
    				{Name: "newPrefix0"},
    				{Name: "newPrefix1"},
    				{Name: "newzen/zen/recurse/again/again/again/pics"},
    				{Name: "obj0"},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 76.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            if (StringUtil.isBlank(content)) {
                return StringUtil.EMPTY;
            }
            final String[] values = content.split("\n");
            final StringBuilder buf = new StringBuilder((int) (content.length() * 1.3));
            buf.append(prefix).append(1).append(':').append(values[0]);
            for (int i = 1; i < values.length; i++) {
                buf.append('\n').append(prefix).append(i + 1).append(':').append(values[i]);
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  4. docs/uk/docs/python-types.md

    ////
    
    ### Класи як типи
    
    Ви також можете оголосити клас як тип змінної.
    
    Скажімо, у вас є клас `Person` з імʼям:
    
    {* ../../docs_src/python_types/tutorial010.py hl[1:3] *}
    
    
    Потім ви можете оголосити змінну типу `Person`:
    
    {* ../../docs_src/python_types/tutorial010.py hl[6] *}
    
    
    І знову ж таки, ви отримуєте всю підтримку редактора:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/Utf8Test.java

        utf8Lengths.put(0x00, 1);
        utf8Lengths.put(0x7f, 1);
        utf8Lengths.put(0x80, 2);
        utf8Lengths.put(0x7ff, 2);
        utf8Lengths.put(0x800, 3);
        utf8Lengths.put(MIN_SUPPLEMENTARY_CODE_POINT - 1, 3);
        utf8Lengths.put(MIN_SUPPLEMENTARY_CODE_POINT, 4);
        utf8Lengths.put(MAX_CODE_POINT, 4);
    
        Integer[] codePoints = utf8Lengths.keySet().toArray(new Integer[] {});
        StringBuilder sb = new StringBuilder();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  6. ci/devinfra/docker/windows2022/Dockerfile

    # It's not feasible to add one for each version, as on Windows,
    # Python uses PATH and the binary's (symlink's) location, to launch itself.
    RUN C:\tools\msys64\usr\bin\bash.exe -lc 'ln -s /c/Python3.13/python.exe /usr/bin/python3';
    
    # Install JDK 21.
    RUN \
      Add-Type -AssemblyName \"System.IO.Compression.FileSystem\"; \
      $zulu_pkg = \"zulu21.34.19-ca-jdk21.0.3-win_x64.zip\"; \
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Jan 13 18:59:55 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.18.md

      - [Changes by Kind](#changes-by-kind-12)
        - [Bug or Regression](#bug-or-regression-11)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-5)
      - [Dependencies](#dependencies-13)
        - [Added](#added-13)
        - [Changed](#changed-13)
        - [Removed](#removed-13)
    - [v1.18.6](#v1186)
      - [Downloads for v1.18.6](#downloads-for-v1186)
        - [Source Code](#source-code-12)
        - [Client binaries](#client-binaries-12)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

      public void testAsList_isAView() {
        float[] array = {0.0f, 1.0f};
        List<Float> list = Floats.asList(array);
        list.set(0, 2.0f);
        assertThat(array).isEqualTo(new float[] {2.0f, 1.0f});
        array[1] = 3.0f;
        assertThat(list).containsExactly(2.0f, 3.0f).inOrder();
      }
    
      public void testAsList_toArray_roundTrip() {
        float[] array = {0.0f, 1.0f, 2.0f};
        List<Float> list = Floats.asList(array);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/FloatsTest.java

      public void testAsList_isAView() {
        float[] array = {0.0f, 1.0f};
        List<Float> list = Floats.asList(array);
        list.set(0, 2.0f);
        assertThat(array).isEqualTo(new float[] {2.0f, 1.0f});
        array[1] = 3.0f;
        assertThat(list).containsExactly(2.0f, 3.0f).inOrder();
      }
    
      public void testAsList_toArray_roundTrip() {
        float[] array = {0.0f, 1.0f, 2.0f};
        List<Float> list = Floats.asList(array);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  10. docs/ko/docs/python-types.md

    위와 같은 타입은 **Generic(제네릭) 타입** 혹은 **Generics(제네릭스)**라고 불립니다.
    
    ### 타입으로서의 클래스
    
    변수의 타입으로 클래스를 선언할 수도 있습니다.
    
    이름(name)을 가진 `Person` 클래스가 있다고 해봅시다.
    
    {* ../../docs_src/python_types/tutorial010.py hl[1:3] *}
    
    
    그렇게 하면 변수를 `Person`이라고 선언할 수 있게 됩니다.
    
    {* ../../docs_src/python_types/tutorial010.py hl[6] *}
    
    
    그리고 역시나 모든 에디터 도움을 받게 되겠죠.
    
    <img src="/img/python-types/image06.png">
    
    ## Pydantic 모델
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top