Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 97 for K2 (0.02 sec)

  1. 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)
  2. 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)
  3. internal/config/config.go

    	}
    
    	if len(subSystemValue) == 2 {
    		tgt = subSystemValue[1]
    	}
    
    	return subSys, inputs, tgt, e
    }
    
    // kvFields - converts an input string of form "k1=v1 k2=v2" into
    // fields of ["k1=v1", "k2=v2"], the tokenization of each `k=v`
    // happens with the right number of input keys, if keys
    // input is empty returned value is empty slice as well.
    func kvFields(input string, keys []string) []string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of {@code
       * EntryTransformer} key type {@code K}, {@code k.equals(k2)} implies that {@code k2} is also of
       * type {@code K}. Using an {@code EntryTransformer} key type for which this may not hold, such as
       * {@code ArrayList}, may risk a {@code ClassCastException} when calling methods on the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multimaps.java

       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of {@code
       * EntryTransformer} key type {@code K}, {@code k.equals(k2)} implies that {@code k2} is also of
       * type {@code K}. Using an {@code EntryTransformer} key type for which this may not hold, such as
       * {@code ArrayList}, may risk a {@code ClassCastException} when calling methods on the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                        KaSimpleVariableAccess.Write(rhs)
                    )
                }
                is FirPropertyAccessExpression, is FirCallableReferenceAccess -> {
                    @Suppress("USELESS_IS_CHECK") // K2 warning suppression, TODO: KT-62472
                    require(fir is FirQualifiedAccessExpression)
                    when (unsubstitutedKtSignature.symbol) {
                        is KaVariableLikeSymbol -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  7. pkg/kube/inject/webhook.go

    	}
    }
    
    // parseInjectEnvs parse new envs from inject url path. format: /inject/k1/v1/k2/v2
    // slash characters in values must be replaced by --slash-- (e.g. /inject/k1/abc--slash--def/k2/v2).
    func parseInjectEnvs(path string) map[string]string {
    	path = strings.TrimSuffix(path, "/")
    	res := func(path string) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                        ce.setSourcePosition(be);
                        return ce;
                    } else {
                        // may be we have C[k1:v1, k2:v2] -> should become (C)([k1:v1, k2:v2])
                        boolean map = true;
                        for (Expression expression : list.getExpressions()) {
                            if (!(expression instanceof MapEntryExpression)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/crypto/sha256/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
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  10. hack/update-codegen.sh

        (
            shopt -s extdebug
            declare -F \
                | cut -f3 -d' ' \
                | grep "^codegen::" \
                | while read -r fn; do declare -F "$fn"; done \
                | sort -n -k2 \
                | cut -f1 -d' ' \
                | sed 's/^codegen:://'
        )
    }
    
    # shellcheck disable=SC2207 # safe, no functions have spaces
    all_codegens=($(list_codegens))
    
    function print_codegens() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top