Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for K2 (0.07 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

       * an entry (according to {@link Object#equals}) after the first are ignored.
       */
      public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) {
        ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder();
        builder.put(k1, v1);
        builder.put(k2, v2);
        return builder.build();
      }
    
      /**
       * Returns an immutable multimap containing the given entries, in order. Repeated occurrences of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableSetMultimap.java

       * an entry (according to {@link Object#equals}) after the first are ignored.
       */
      public static <K, V> ImmutableSetMultimap<K, V> of(K k1, V v1, K k2, V v2) {
        ImmutableSetMultimap.Builder<K, V> builder = ImmutableSetMultimap.builder();
        builder.put(k1, v1);
        builder.put(k2, v2);
        return builder.build();
      }
    
      /**
       * Returns an immutable multimap containing the given entries, in order. Repeated occurrences of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableMultimap.java

      public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2) {
        return ImmutableListMultimap.of(k1, v1, k2, v2);
      }
    
      /**
       * Returns an immutable multimap containing the given entries, in the "key-grouped" insertion
       * order described in the <a href="#iteration">class documentation</a>.
       */
      public static <K, V> ImmutableMultimap<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

        originalObj:
          listKey:
          - k1: v1
          - k2: null
          - k3: v3
            k4: null
        expectedWithNull: {}
        expectedWithoutNull:
          listKey:
          - k1: v1
          - k2: null
          - k3: v3
            k4: null
      - description: list of different types
        originalObj:
          listKey:
          - k1: v1
          - k2: null
          - v3
        expectedWithNull: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineDelegatedPropertyAccessorsAnalyzer.kt

            }
        }
        while (filesQueueToAnalyze.isNotEmpty()) {
            val file = filesQueueToAnalyze.removeFirst()
            analyze(file) {
                require(this is KaFe10Session) {
                    "K2 implementation shouldn't call this code"
                }
                file.accept(InlineDelegatedPropertyAccessorsAnalyzer(analysisContext, collector))
            }
        }
    }
    
    @OptIn(KaAnalysisNonPublicApi::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_arm64.s

    #define ACCM V10
    
    #define T0 V11
    #define T1 V12
    #define T2 V13
    #define T3 V14
    
    #define POLY V15
    #define ZERO V16
    #define INC V17
    #define CTR V18
    
    #define K0 V19
    #define K1 V20
    #define K2 V21
    #define K3 V22
    #define K4 V23
    #define K5 V24
    #define K6 V25
    #define K7 V26
    #define K8 V27
    #define K9 V28
    #define K10 V29
    #define K11 V30
    #define KLAST V31
    
    #define reduce() \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. pkg/util/sets/set_test.go

    }
    
    func TestInsertContains(t *testing.T) {
    	s := New[string]()
    	assert.Equal(t, s.InsertContains("k1"), false)
    	assert.Equal(t, s.InsertContains("k1"), true)
    	assert.Equal(t, s.InsertContains("k2"), false)
    	assert.Equal(t, s.InsertContains("k2"), true)
    }
    
    func BenchmarkSet(b *testing.B) {
    	containsTest := New[string]()
    	for i := 0; i < 1000; i++ {
    		containsTest.Insert(fmt.Sprint(i))
    	}
    	sortOrder := []string{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. src/context/x_test.go

    	}
    }
    
    type key1 int
    type key2 int
    
    func (k key2) String() string { return fmt.Sprintf("%[1]T(%[1]d)", k) }
    
    var k1 = key1(1)
    var k2 = key2(1) // same int as k1, different type
    var k3 = key2(3) // same type as k2, different int
    
    func TestValues(t *testing.T) {
    	check := func(c Context, nm, v1, v2, v3 string) {
    		if v, ok := c.Value(k1).(string); ok == (len(v1) == 0) || v != v1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    			obj:    objs(map[string]interface{}{"k1": "a", "k2": "b"}, map[string]interface{}{"k2": "b", "k1": "a"}),
    			schema: schemas(mapType(&stringType), mapType(&stringType)),
    			expectCost: map[string]int64{
    				"self.val1 == self.val2":              5, // equal even though order is different
    				"'k1' in self.val1":                   3,
    				"!('k3' in self.val1)":                4,
    				"self.val1 == {'k1': 'a', 'k2': 'b'}": 3,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

         * shorten enum entries.  In case of KDoc shortens reference only if it is already imported.
         *
         * N.B. This API is not implemented for the FE10 implementation!
         * For a K1- and K2-compatible API, use [org.jetbrains.kotlin.idea.base.codeInsight.ShortenReferencesFacility].
         *
         * Also see [org.jetbrains.kotlin.idea.base.analysis.api.utils.shortenReferences] and functions around it.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top