Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for K2 (0.46 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveTest.kt

            )
    
            val IGNORE_STABILITY_K2 by stringDirective(
                description = "Symbol restoring for some symbols in current test is not supported yet in K2",
            )
        }
    
        protected fun RegisteredDirectives.doNotCheckSymbolRestoreDirective(): StringDirective? = findSpecificDirective(
            commonDirective = Directives.IGNORE_STABILITY,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 19:03:00 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

    @OptIn(KaAnalysisNonPublicApi::class) // used in IDEA K1 evaluator
    @Suppress("unused")
    fun KaSession.getInlineFunctionAnalyzer(analyzeOnlyReifiedInlineFunctions: Boolean): InlineFunctionAnalyzer {
        require(this is KaFe10Session) {
            "K2 implementation shouldn't call this code"
        }
        return InlineFunctionAnalyzer(analysisContext, analyzeOnlyReifiedInlineFunctions)
    }
    
    @OptIn(KaAnalysisNonPublicApi::class)
    class InlineFunctionAnalyzer(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/rule_test.go

    		},
    		{
    			inputXML: `<Rule>
    				<ID>Rule with multiple tags and DelMarkerExpiration</ID>
    				<Filter><And>
    				<Tag><Key>k1</Key><Value>v1</Value></Tag>
    				<Tag><Key>k2</Key><Value>v2</Value></Tag>
    				</And></Filter>
    				<DelMarkerExpiration>
    					<Days>365</Days>
    				</DelMarkerExpiration>
                                <Status>Enabled</Status>
    	                    </Rule>`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirVisibilityChecker.kt

            val effectiveSession = if (positionModule is KtDanglingFileModule && candidateModule != positionModule) {
                @Suppress("USELESS_CAST") // Smart cast is only available in K2
                val contextModule = (positionModule as KtDanglingFileModule).contextModule
                firResolveSession.getSessionFor(contextModule)
            } else {
                firResolveSession.getSessionFor(positionModule)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

        )
    
        val DO_NOT_CHECK_SYMBOL_RESTORE_K2 by directive(
            description = "Symbol restoring for some symbols in current test is not supported yet in K2",
        )
    
        val DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE by directive(
            description = "Symbol restoring w/o psi for some symbols in current test is not supported yet",
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

                .addValue(Arrays.asList("C"))
                .addValue(Arrays.asList())
                .add(SHORT_NAME, Collections.singletonMap("k1", "v1"))
                .add(LONG_NAME, Collections.singletonMap("k2", "v2"))
                .addValue(Collections.singletonMap("k3", "v3"))
                .addValue(Collections.emptyMap())
                .addValue(null)
                .add(SHORT_NAME, Optional.of("1"))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"optional.ofNonZeroValue(duration('0s')) == optional.none()",
    
    				"{?'k': optional.none(), 'k2': 'v2'} == {'k2': 'v2'}",
    				"{?'k': optional.of('v'), 'k2': 'v2'} == {'k': 'v', 'k2': 'v2'}",
    				"['a', ?optional.none(), 'c'] == ['a', 'c']",
    				"['a', ?optional.of('v'), 'c'] == ['a', 'v', 'c']",
    			},
    			errors: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/google/BiMapPutTester.java

      @MapFeature.Require(SUPPORTS_PUT)
      @CollectionSize.Require(SEVERAL)
      public void testForcePutKeyAndValuePresent() {
        getMap().forcePut(k0(), v1());
        expectContents(Helpers.mapEntry(k0(), v1()), Helpers.mapEntry(k2(), v2()));
        assertEquals(2, getMap().size());
        assertFalse(getMap().containsKey(k1()));
        assertFalse(getMap().containsValue(v0()));
      }
    
      @MapFeature.Require({SUPPORTS_PUT, ALLOWS_NULL_KEYS})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    				B: B{
    					A: A{
    						A: 3,
    						B: "33",
    					},
    					B: "bbb",
    					C: map[string]string{
    						"k1": "v1",
    						"k2": "v2",
    					},
    					D: []string{"s1", "s2"},
    				},
    				C: "ccc",
    				D: &intVal,
    				E: map[string]int{
    					"k1": 1,
    					"k2": 2,
    				},
    				F: []bool{true, false, false},
    				G: []int{1, 2, 5},
    				H: 3.3,
    				I: []interface{}{nil, nil, nil},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    namespace gtest_internal {
    
    // SameSizeTuplePrefixComparator<k, k>::Eq(t1, t2) returns true if the
    // first k fields of t1 equals the first k fields of t2.
    // SameSizeTuplePrefixComparator(k1, k2) would be a compiler error if
    // k1 != k2.
    template <int kSize1, int kSize2>
    struct SameSizeTuplePrefixComparator;
    
    template <>
    struct SameSizeTuplePrefixComparator<0, 0> {
      template <class Tuple1, class Tuple2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top