Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 685 for mcall (0.08 sec)

  1. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/functionCall.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = call(1, "foo")
        type = kotlin.Int
      hasEscapingJumps = false
      hasJumps = false
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 349 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/suspendFunctionCall.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = call(1, "foo")
        type = kotlin.Int
      hasEscapingJumps = false
      hasJumps = false
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 349 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/errorDefaultType.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = call()
        type = ERROR CLASS: Symbol not found for Foo?
      hasEscapingJumps = false
      hasJumps = false
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 369 bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtContractDescriptionElementRenderer.kt

        endWithNewLine: Boolean = true
    ) {
        appendLine(prop.name + ":")
        withIndent {
            renderer(prop.call(), endWithNewLine)
        }
    }
    
    private fun PrettyPrinter.appendSimpleProperty(prop: KProperty<Any>, endWithNewLine: Boolean = true) {
        append(prop.name + ": ")
        append(prop.call().toString())
        if (endWithNewLine) appendLine()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/par/work.go

    	done   atomic.Bool
    	mu     sync.Mutex
    	result V
    }
    
    // Do calls the function f if and only if Do is being called for the first time with this key.
    // No call to Do with a given key returns until the one call to f returns.
    // Do returns the value returned by the one call to f.
    func (c *Cache[K, V]) Do(key K, f func() V) V {
    	entryIface, ok := c.m.Load(key)
    	if !ok {
    		entryIface, _ = c.m.LoadOrStore(key, new(cacheEntry[V]))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/apis.go

    	// main.XYZ) that invokes ClearCounters:
    	//
    	//     func XYZ() {
    	//       ... do some stuff ...
    	//       coverage.ClearCounters()
    	//       if someCondition {   <<--- HERE
    	//         ...
    	//       }
    	//     }
    	//
    	// At the point where ClearCounters executes, main.XYZ has not yet
    	// finished running, thus as soon as the call returns the line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. internal/grid/handlers.go

    			if r != rZero {
    				pool.Put(r)
    			}
    		}
    }
    
    // NewSingleHandler creates a typed handler that can provide Marshal/Unmarshal.
    // Use Register to register a server handler.
    // Use Call to initiate a clientside call.
    func NewSingleHandler[Req, Resp RoundTripper](h HandlerID, newReq func() Req, newResp func() Resp) *SingleHandler[Req, Resp] {
    	s := SingleHandler[Req, Resp]{id: h}
    	s.newReq, s.recycleReq = recycleFunc[Req](newReq)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. src/net/net.go

    	// fail instead of blocking. The deadline applies to all future
    	// and pending I/O, not just the immediately following call to
    	// Read or Write. After a deadline has been exceeded, the
    	// connection can be refreshed by setting a deadline in the future.
    	//
    	// If the deadline is exceeded a call to Read or Write or to other
    	// I/O methods will return an error that wraps os.ErrDeadlineExceeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

    // CHECK: [[body_res:%.*]] = call @while_body_add2([[arg]]) : (!tf_mlrt.tensor) -> !tf_mlrt.tensor
    // CHECK: [[pred_res:%.*]] = call @"while_cond_lt9/tf_mlrt_predicate"([[body_res]]) : (!tf_mlrt.tensor) -> i1
    // CHECK: return [[body_res]], [[pred_res]] : !tf_mlrt.tensor, i1
    
    // CHECK: func @"while_cond_lt9/tf_mlrt_predicate"([[arg:%.*]]: !tf_mlrt.tensor) -> i1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. test/linknameasm.dir/a_amd64.s

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    TEXT	·asm(SB),0,$0-8
    	CALL	·callback(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 208 bytes
    - Viewed (0)
Back to top