Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for K2 (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/runtime/map.go

    				if b.tophash[i] == emptyRest {
    					break search
    				}
    				continue
    			}
    			k := add(unsafe.Pointer(b), dataOffset+i*uintptr(t.KeySize))
    			k2 := k
    			if t.IndirectKey() {
    				k2 = *((*unsafe.Pointer)(k2))
    			}
    			if !t.Key.Equal(key, k2) {
    				continue
    			}
    			// Only clear key if there are pointers in it.
    			if t.IndirectKey() {
    				*(*unsafe.Pointer)(k) = nil
    			} else if t.Key.Pointers() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/log/slog/value.go

    }
    
    //////////////// Other
    
    // Equal reports whether v and w represent the same Go value.
    func (v Value) Equal(w Value) bool {
    	k1 := v.Kind()
    	k2 := w.Kind()
    	if k1 != k2 {
    		return false
    	}
    	switch k1 {
    	case KindInt64, KindUint64, KindBool, KindDuration:
    		return v.num == w.num
    	case KindString:
    		return v.str() == w.str()
    	case KindFloat64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                    .filter(e -> e.getValue() != null)
                    .collect(Collectors.toMap(
                            e -> String.valueOf(e.getKey()), e -> String.valueOf(e.getValue()), (k1, k2) -> k2));
        }
    
        private String getUserAgent() {
            String version = runtimeInformation.getMavenVersion();
            version = version.isEmpty() ? version : "/" + version;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

       * to the set.
       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of key type {@code K},
       * {@code k.equals(k2)} implies that {@code k2} is also of type {@code K}. Using a key type for
       * which this may not hold, such as {@code ArrayList}, may risk a {@code ClassCastException} when
       * calling methods on the resulting map view.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top