Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for returns_ (0.31 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. 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)
  7. 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)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvableDependencies.java

         *
         * @return The collection. Never null.
         */
        @Override
        FileCollection getFiles();
    
        /**
         * Returns the set of dependencies which will be resolved.
         *
         * @return the dependencies. Never null.
         */
        DependencySet getDependencies();
    
        /**
         * Returns the set of dependency constraints which will be considered during resolution.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 17:30:50 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/SortedSetMultimap.java

      /**
       * Returns a collection view of all values associated with a key. If no mappings in the multimap
       * have the provided key, an empty collection is returned.
       *
       * <p>Changes to the returned collection will update the underlying multimap, and vice versa.
       *
       * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given key, this method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top