Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for conf (0.18 sec)

  1. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/while.kt

    fun test() {
        var x = 0
        <expr>consume(x)
        while (cond()) {
            consume(++x)
        }</expr>
    }
    
    fun cond(): Boolean = true
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 156 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/breakContinue.kt

    fun test() {
        while (cond()) {
            <expr>if (foo() == 5) {
                break
            } else if (foo() == 6) {
                continue
            }</expr>
            consume("foo")
        }
    }
    
    fun cond(): Boolean = true
    
    fun foo(): Int = 0
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 266 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/breakReturn.kt

    fun test() {
        while (cond()) {
            <expr>if (foo() == 5) {
                break
            } else if (foo() == 6) {
                return
            }</expr>
            consume("foo")
        }
    }
    
    fun cond(): Boolean = true
    
    fun foo(): Int = 0
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 264 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/differentTargets/break.kt

    fun test() {
        outer@ while (cond()) {
            consume(1)
            while (cond()) {
                consume(2)
                <expr>if (cond()) {
                    break
                } else if (cond()) {
                    break@outer
                }</expr>
            }
        }
    }
    
    fun consume(obj: Any?) {}
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 316 bytes
    - Viewed (0)
  5. doc/godebug.md

    `x509keypairleaf=0`.
    
    ### Go 1.22
    
    Go 1.22 adds a configurable limit to control the maximum acceptable RSA key size
    that can be used in TLS handshakes, controlled by the [`tlsmaxrsasize` setting](/pkg/crypto/tls#Conn.Handshake).
    The default is tlsmaxrsasize=8192, limiting RSA to 8192-bit keys. To avoid
    denial of service attacks, this setting and default was backported to Go
    1.19.13, Go 1.20.8, and Go 1.21.1.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/continueReturn.kt

    fun test() {
        while (cond()) {
            <expr>if (foo() == 5) {
                continue
            } else if (foo() == 6) {
                return
            }</expr>
            consume("foo")
        }
    }
    
    fun cond(): Boolean = true
    
    fun foo(): Int = 0
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 267 bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-65103`](https://youtrack.jetbrains.com/issue/KT-65103) K2: IllegalArgumentException: IrErrorCallExpressionImpl(5388, 5392, "Unresolved reference: R?C|<local>/cont|") found but error code is not allowed
    - [`KT-62788`](https://youtrack.jetbrains.com/issue/KT-62788) K2: difference in annotation inheritance in overriddings
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/unconditionalJumps/break.kt

    fun test() {
        x@ while (cond()) {
            <expr>consume(5)
            break@x</expr>
        }
    }
    
    fun cond(): Boolean = true
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 144 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/differentTargets/break.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = if (cond()) {
                        break
                    } else if (cond()) {
                        break@outer
                    }
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = true
      jumpExpressions = [
        break,
        break@outer
      ]
      returnValueType = null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 489 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/breakReturn2.kt

    fun test(): Int {
        while (cond()) {
            <expr>if (foo() == 5) {
                return 1
            } else if (foo() == 6) {
                break
            }</expr>
            consume("foo")
        }
    
        return 0
    }
    
    fun cond(): Boolean = true
    
    fun foo(): Int = 0
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 285 bytes
    - Viewed (0)
Back to top