Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/internal/notsha256/sha256block_amd64.s

    // Round specific constants
    DATA K256<>+0x00(SB)/4, $0x428a2f98 // k1
    DATA K256<>+0x04(SB)/4, $0x71374491 // k2
    DATA K256<>+0x08(SB)/4, $0xb5c0fbcf // k3
    DATA K256<>+0x0c(SB)/4, $0xe9b5dba5 // k4
    DATA K256<>+0x10(SB)/4, $0x428a2f98 // k1
    DATA K256<>+0x14(SB)/4, $0x71374491 // k2
    DATA K256<>+0x18(SB)/4, $0xb5c0fbcf // k3
    DATA K256<>+0x1c(SB)/4, $0xe9b5dba5 // k4
    
    DATA K256<>+0x20(SB)/4, $0x3956c25b // k5 - k8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho.go

    		}
    	}
    	collectmachosyms(ctxt)
    	sort.Slice(sortsym[:nsortsym], func(i, j int) bool {
    		s1 := sortsym[i]
    		s2 := sortsym[j]
    		k1 := symkind(ldr, s1)
    		k2 := symkind(ldr, s2)
    		if k1 != k2 {
    			return k1 < k2
    		}
    		return ldr.SymExtname(s1) < ldr.SymExtname(s2) // Note: unnamed symbols are not added in collectmachosyms
    	})
    	for i, s := range sortsym {
    		ldr.SetSymDynid(s, int32(i))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    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
    - 27.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    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: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                    if (firDefaultStatement.resolvedType.isUnit) {
                        return null
                    }
                }
            }
    
            @Suppress("USELESS_IS_CHECK") // K2 warning suppression, TODO: KT-62472
            require(firDefaultStatement is FirExpression)
    
            val defaultStatementFromFir = firDefaultStatement.psi as? KtExpression ?: return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. test/loopbce.go

    		useSlice(a[:i+10]) // ERROR "(\([0-9]+\) )?Proved IsSliceInBounds$"
    		useSlice(a[:i+11]) // ERROR "(\([0-9]+\) )?Proved IsSliceInBounds$"
    		useSlice(a[:i+12])
    
    	}
    	return a
    }
    
    func k2(a [100]int) [100]int {
    	for i := 10; i < 90; i++ { // ERROR "Induction variable: limits \[10,90\), increment 1$"
    		if a[0] == 0xdeadbeef {
    			// This is a trick to prohibit sccp to optimize out the following out of bound check
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top