Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for K2 (0.06 sec)

  1. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableBiMap.java

      public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2) {
        return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2));
      }
    
      public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3) {
        return new RegularImmutableBiMap<K, V>(ImmutableMap.of(k1, v1, k2, v2, k3, v3));
      }
    
      public static <K, V> ImmutableBiMap<K, V> of(K k1, V v1, K k2, V v2, K k3, V v3, K k4, V v4) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/K2IntegrationTest.kt

            assertCanConsumeK2BuildLogic()
        }
    
        @Test
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor::class)
        fun `can try k2 with included build for build logic using kotlin-dsl plugin`() {
    
            // This test doesn't use a .gradle.kts precompiled script because K2 doesn't support scripts yet
    
            withDefaultSettingsIn("build-logic")
            withBuildScriptIn("build-logic", """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/DocMap.java

                    if (LANG_KEY.equals(k1)) {
                        return -1;
                    }
                    final String k2 = o2.getKey();
                    if (LANG_KEY.equals(k2)) {
                        return -1;
                    }
                    return k1.compareTo(k2);
                });
                return new LinkedHashSet<>(list);
            }
            return parent.entrySet();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/classLiteralExpressionLHSParenthesizedUsed.kt

    fun test() {
        val string = <expr>(String)</expr>::class
    }
    
    // IGNORE_FE10
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 159 bytes
    - Viewed (0)
  5. tools/bug-report/pkg/filter/filter_test.go

      l1: v1
      l2: v2
    ns1/p2:
      l1: v1
      l2: v22
      l3: v3
    ns1/p3:
      l1: v1
      l2: v2
      l3: v3
      l4: v4
    `
    	testClusterResourcesAnnotations = `
    ns1/p1:
      k2: v2
    ns1/p2:
      k1: v1
      k2: v2
      k3: v33
    ns1/p3:
      k1: v1
      k2: v22
      k3: v3
    ns1/p4:
      k1: v1
      k4: v4
    `
    
    	p1c1 = "ns1/d1/p1/c1"
    	p1c2 = "ns1/d1/p1/c2"
    	p2c3 = "ns1/d1/p2/c3"
    	p3c4 = "ns1/d2/p3/c4"
    	p3c5 = "ns1/d2/p3/c5"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/artifact/DefaultMavenMetadataCacheTest.java

                    new DefaultMavenMetadataCache.CacheKey(a1, false, lr1, Collections.singletonList(rr1));
            DefaultMavenMetadataCache.CacheKey k2 =
                    new DefaultMavenMetadataCache.CacheKey(a2, false, lr2, Collections.singletonList(rr2));
    
            assertEquals(k1.hashCode(), k2.hashCode());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescFunctionSymbol.kt

            get() = withValidityAssertion { descriptor.isSuspend }
    
        override val isOperator: Boolean
            get() = withValidityAssertion {
                if (descriptor.isDynamic()) {
                    // For consistency with the K2 implementation, see `FirDynamicMembersStorage`
                    return@withValidityAssertion true
                }
                descriptor.isOperator
            }
    
        override val isExternal: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    //	url('https://example.com/path with spaces/').getEscapedPath() // returns '/path%20with%20spaces/'
    //	url('https://example.com').getEscapedPath() // returns ''
    //	url('https://example.com/path?k1=a&k2=b&k2=c').getQuery() // returns { 'k1': ['a'], 'k2': ['b', 'c']}
    //	url('https://example.com/path?key with spaces=value with spaces').getQuery() // returns { 'key with spaces': ['value with spaces']}
    //	url('https://example.com/path?').getQuery() // returns {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. src/maps/maps_test.go

    				m[K{float64(i) + 1}] = V{}
    			}
    		}
    
    		// Clone m, which should freeze the map's contents.
    		c := Clone(m)
    
    		// Update m with new key and value.
    		k2, v2 := k1, v1
    		k2[0] = negZero
    		v2[0] = 1.0
    		m[k2] = v2
    
    		// Make sure c still has its old key and value.
    		for k, v := range c {
    			if math.Signbit(k[0]) {
    				t.Errorf("tst%d: sign bit of key changed; got %v want %v", tst, k, k1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 17:05:56 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. 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)
Back to top