Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 356 for 13 (0.02 sec)

  1. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	XVSLLB		$4, X2		// 42302c77
    	XVSLLH		$0, X2, X1	// 41402c77
    	XVSLLH		$15, X2, X1	// 417c2c77
    	XVSLLH		$8, X2		// 42602c77
    	XVSLLW		$0, X2, X1	// 41802c77
    	XVSLLW		$31, X2, X1	// 41fc2c77
    	XVSLLW		$13, X2		// 42b42c77
    	XVSLLV		$0, X2, X1	// 41002d77
    	XVSLLV		$63, X2, X1	// 41fc2d77
    	XVSLLV		$36, X2		// 42902d77
    	XVSRLB		$0, X2, X1	// 41203077
    	XVSRLB		$7, X2, X1	// 413c3077
    	XVSRLB		$5, X2		// 42343077
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 19:24:25 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/avx512enc/avx512f.s

    	VPERMILPD $13, Z3, K2, Z14                         // 6273fd4a05f30d
    	VPERMILPD $13, Z12, K2, Z14                        // 6253fd4a05f40d
    	VPERMILPD $13, (AX), K2, Z14                       // 6273fd4a05300d
    	VPERMILPD $13, 7(SI), K2, Z14                      // 6273fd4a05b6070000000d
    	VPERMILPD $13, Z3, K2, Z28                         // 6263fd4a05e30d
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 410.5K bytes
    - Viewed (0)
  3. cmd/apierrorcode_string.go

    	_ = x[ErrInternalError-7]
    	_ = x[ErrInvalidAccessKeyID-8]
    	_ = x[ErrAccessKeyDisabled-9]
    	_ = x[ErrInvalidArgument-10]
    	_ = x[ErrInvalidBucketName-11]
    	_ = x[ErrInvalidDigest-12]
    	_ = x[ErrInvalidRange-13]
    	_ = x[ErrInvalidRangePartNumber-14]
    	_ = x[ErrInvalidCopyPartRange-15]
    	_ = x[ErrInvalidCopyPartRangeSource-16]
    	_ = x[ErrInvalidMaxKeys-17]
    	_ = x[ErrInvalidEncodingMethod-18]
    	_ = x[ErrInvalidMaxUploads-19]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                                Os.LINUX,
                                JvmCategory.MIN_VERSION,
                                DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE,
                            ),
                            TestCoverage(13, TestType.NO_DAEMON, Os.WINDOWS, JvmCategory.MAX_LTS_VERSION),
                            TestCoverage(
                                14,
                                TestType.PLATFORM,
                                Os.MACOS,
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Sun Aug 03 22:40:28 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        Segment<Object, Object, ?, ?> segment = map.segments[0];
        assertEquals(1, segment.table.length());
    
        // manually add elements to avoid expansion
        // 1/3 null keys, 1/3 null values
        int originalCount = 1024;
        InternalEntry<Object, Object, ?> entry = null;
        for (int i = 0; i < originalCount; i++) {
          Object key = new Object();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        Segment<Object, Object, ?, ?> segment = map.segments[0];
        assertEquals(1, segment.table.length());
    
        // manually add elements to avoid expansion
        // 1/3 null keys, 1/3 null values
        int originalCount = 1024;
        InternalEntry<Object, Object, ?> entry = null;
        for (int i = 0; i < originalCount; i++) {
          Object key = new Object();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/fscc/FileSystemInformationTest.java

                // Skip idFileSystem (4 bytes)
                buffer[4] = 0x08; // sectPerAlloc = 8
                buffer[8] = 0x00;
                buffer[9] = 0x10; // alloc = 4096
                buffer[12] = 0x00;
                buffer[13] = 0x08; // free = 2048
                buffer[16] = 0x00;
                buffer[17] = 0x02; // bytesPerSect = 512
    
                int bytesDecoded = smbInfoAllocation.decode(buffer, 0, buffer.length);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  8. docs/fr/docs/python-types.md

    ### Classes en tant que types
    
    Vous pouvez aussi déclarer une classe comme type d'une variable.
    
    Disons que vous avez une classe `Person`, avec une variable `name` :
    
    {*../../docs_src/python_types/tutorial010.py hl[1:3] *}
    
    
    Vous pouvez ensuite déclarer une variable de type `Person` :
    
    {*../../docs_src/python_types/tutorial010.py hl[6] *}
    
    Et vous aurez accès, encore une fois, au support complet offert par l'éditeur :
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. docs/em/docs/tutorial/bigger-applications.md

    ✋️ ⚫️ 🍕 🎏 **FastAPI** 🈸/🕸 🛠️ (⚫️ 🍕 🎏 "🐍 📦").
    
    👆 💪 ✍ *➡ 🛠️* 👈 🕹 ⚙️ `APIRouter`.
    
    ### 🗄 `APIRouter`
    
    👆 🗄 ⚫️ &amp; ✍ "👐" 🎏 🌌 👆 🔜 ⏮️ 🎓 `FastAPI`:
    
    ```Python hl_lines="1  3" title="app/routers/users.py"
    {!../../docs_src/bigger_applications/app/routers/users.py!}
    ```
    
    ### *➡ 🛠️* ⏮️ `APIRouter`
    
    &amp; ⤴️ 👆 ⚙️ ⚫️ 📣 👆 *➡ 🛠️*.
    
    ⚙️ ⚫️ 🎏 🌌 👆 🔜 ⚙️ `FastAPI` 🎓:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/RangeSet.java

      @Override
      int hashCode();
    
      /**
       * Returns a readable string representation of this range set. For example, if this {@code
       * RangeSet} consisted of {@code Range.closed(1, 3)} and {@code Range.greaterThan(4)}, this might
       * return {@code " [1..3](4..+∞)}"}.
       */
      @Override
      String toString();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 9.8K bytes
    - Viewed (0)
Back to top