Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for _return (0.72 sec)

  1. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/return3.txt

        expression = if (a + b > 0) return 0
            else if (a - b < 0) consume(a - b)
            else consume(0)
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return 0
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return 0
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 462 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/definiteJumps/return2.txt

      hasEscapingJumps = false
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return b,
        return -b,
        return a - b
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return b,
        return -b,
        return a - b
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 380 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/return3.kt

    fun foo(a: Int): Int {
        val b: Int = 1
        <expr>if (a + b > 0) return 0
        else if (a - b < 0) consume(a - b)
        else consume(0)</expr>
        return 1
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 183 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/definiteJumps/return3.kt

    fun foo(a: Int): Int {
        a.let {
            <expr>if (it > 0) return it else return@foo -it</expr>
        }
        return 0
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 118 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/definiteJumps/return2.kt

    fun foo(a: Int): Int {
        val b: Int = 1
        <expr>when (a + b) {
            0 -> return b
            1 -> return -b
            else -> return a - b
        }</expr>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 155 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/conditionalJumps/return2.txt

        expression = when (a + b) {
                0 -> return 0
                1 -> consume(1)
                else -> consume(2)
            }
        type = kotlin.Unit
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return 0
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return 0
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 481 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-uint8-return.pbtxt

    versions {
      producer: 29
      min_consumer: 12
    }
    
    # CHECK: func @main
    # CHECK: "tf.PartitionedCall"()
    # CHECK-SAME: f = @[[FUNCTION:[A-Za-z0-9_]*]]
    # CHECK: func private @[[FUNCTION]]() -> tensor<*xui8>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  8. releasenotes/notes/48047-probe-return-body.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 10:47:14 UTC 2023
    - 234 bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.DefaultTask.doLast(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (DefaultTask.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  10. tensorflow/cc/experimental/libtf/object.h

    template <typename TReturn, typename... TFuncArgs>
    class CallableWrapperUnpackArgs<TReturn (*)(TFuncArgs...)>
        : public CallableWrapper<TReturn (*)(TFuncArgs...), TReturn, TFuncArgs...> {
      using Fn = TReturn (*)(TFuncArgs...);
    
     public:
      CallableWrapperUnpackArgs(Fn fn, const char* name)
          : CallableWrapper<Fn, TReturn, TFuncArgs...>(fn, name) {}
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top