Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for returns_ (0.19 sec)

  1. 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)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/differentTargets/return.txt

      defaultExpressionInfo = null
      hasEscapingJumps = true
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = true
      jumpExpressions = [
        return 1,
        return@block
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return 1
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 330 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/languageConstructs/return.kt

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

      defaultExpressionInfo = null
      hasEscapingJumps = false
      hasJumps = true
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = [
        return a + b
      ]
      returnValueType = kotlin.Int
      valuedReturnExpressions = [
        return a + b
      ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 322 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/return.go

    			return true
    		}
    
    	case *syntax.BlockStmt:
    		return check.isTerminatingList(s.List, "")
    
    	case *syntax.IfStmt:
    		if s.Else != nil &&
    			check.isTerminating(s.Then, "") &&
    			check.isTerminating(s.Else, "") {
    			return true
    		}
    
    	case *syntax.SwitchStmt:
    		return check.isTerminatingSwitch(s.Body, label)
    
    	case *syntax.SelectStmt:
    		for _, cc := range s.Body {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. 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)
  7. pkg/proxy/endpoint.go

    	return info.isLocal
    }
    
    // IsReady returns true if an endpoint is ready and not terminating.
    func (info *BaseEndpointInfo) IsReady() bool {
    	return info.ready
    }
    
    // IsServing returns true if an endpoint is ready, regardless of if the
    // endpoint is terminating.
    func (info *BaseEndpointInfo) IsServing() bool {
    	return info.serving
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:38:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    // %output#0 corresponds to %k returned from "/DEVICE:0"
    // %output#1 corresponds to %k returned from "/DEVICE:1"
    // %output#2 corresponds to %l returned from "/DEVICE:2"
    // %output#3 corresponds to %l returned from "/DEVICE:3"
    // %output#4, %output#5 corresponds to %m and will be returned from "/DEVICE:4"
    // %output#6, %output#7 corresponds to %n and will have no device set
    ```
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K 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. android/guava/src/com/google/common/collect/Table.java

       *
       * @return set of column keys
       */
      Set<C> columnKeySet();
    
      /**
       * Returns a collection of all values, which may contain duplicates. Changes to the returned
       * collection will update the underlying table, and vice versa.
       *
       * @return collection of values
       */
      Collection<V> values();
    
      /**
       * Returns a view that associates each row key with the corresponding map from column keys to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top