Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for K2 (0.01 sec)

  1. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi2.s

    	VPSHLDVW Y12, Y13, K2, Y31                         // 6242952a70fc
    	VPSHLDVW 17(SP)(BP*1), Y13, K2, Y31                // 6262952a70bc2c11000000
    	VPSHLDVW -7(CX)(DX*8), Y13, K2, Y31                // 6262952a70bcd1f9ffffff
    	VPSHLDVW Y2, Y7, K2, Y31                           // 6262c52a70fa
    	VPSHLDVW Y21, Y7, K2, Y31                          // 6222c52a70fd
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 97.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       */
      public static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> of(
          K k1, V v1, K k2, V v2) {
        return fromEntries(entryOf(k1, v1), entryOf(k2, v2));
      }
    
      /**
       * Returns an immutable sorted map containing the given entries, sorted by the natural ordering of
       * their keys.
       *
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 21:07:18 UTC 2025
    - 52.9K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt

        k1Creator.setString(1, "C")
        k1Creator.commit()
        val k2Creator = cache.edit("k2")!!
        k2Creator.setString(0, "DEF")
        k2Creator.setString(1, "G")
        k2Creator.commit()
        val k1Snapshot = cache["k1"]!!
        k1Snapshot.close()
        cache.close()
        assertJournalEquals("DIRTY k1", "CLEAN k1 2 1", "DIRTY k2", "CLEAN k2 3 1", "READ k1")
      }
    
      @Test
      fun cannotOperateOnEditAfterPublish() {
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Nov 01 12:18:11 UTC 2025
    - 59.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of {@code
       * EntryTransformer} key type {@code K}, {@code k.equals(k2)} implies that {@code k2} is also of
       * type {@code K}. Using an {@code EntryTransformer} key type for which this may not hold, such as
       * {@code ArrayList}, may risk a {@code ClassCastException} when calling methods on the
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertEquals(
            new TypeToken<StringForFirstTypeArg<?>>() {}, supertype.getSubtype(subtype.getRawType()));
      }
    
      private static class TwoTypeArgs<K, V> {
        class InnerType<K2, V2> {}
      }
    
      private static class StringForFirstTypeArg<V> extends TwoTypeArgs<String, V> {
        class StringInnerType<V2> extends InnerType<String, V2> {}
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 89K bytes
    - Viewed (0)
Back to top