Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 196 for tcCall (0.24 sec)

  1. src/runtime/symtabinl.go

    	// always a "call PC" (not a "return PC"). This is 0 when the iterator is
    	// exhausted.
    	pc uintptr
    
    	// index is the index of the current record in inlTree, or -1 if we are in
    	// the outermost function.
    	index int32
    }
    
    // newInlineUnwinder creates an inlineUnwinder initially set to the inner-most
    // inlined frame at PC. PC should be a "call PC" (not a "return PC").
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

        "mlir::stablehlo::StablehloDialect",
        "mlir::quantfork::QuantizationForkDialect",
      ];
    }
    
    def XlaCallModuleToCallPass : Pass<"stablehlo-xla-call-module-to-call", "ModuleOp"> {
      let summary = "Convert XlaCallModuleOp to func.call op";
      let dependentDialects = [
        "TF::TensorFlowDialect",
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    				skip--
    			} else {
    				// Callers expect the pc buffer to contain return addresses
    				// and do the -1 themselves, so we add 1 to the call pc to
    				// create a "return pc". Since there is no actual call, here
    				// "return pc" just means a pc you subtract 1 from to get
    				// the pc of the "call". The actual no-op we insert may or
    				// may not be 1 byte.
    				pcBuf[n] = uf.pc + 1
    				n++
    			}
    			u.calleeFuncID = sf.funcID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirInvokeFunctionReference.kt

        override fun KaSession.resolveToSymbols(): Collection<KaSymbol> {
            return expression.resolveCallOld()?.calls.orEmpty().mapNotNull { call ->
                (call as? KaSimpleFunctionCall)
                    ?.takeIf { it.isImplicitInvoke }
                    ?.partiallyAppliedSymbol
                    ?.symbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.cc

          SetPotentiallyWritten(assign_variable.getResource());
          return;
        }
        if (auto call = dyn_cast<CallOpInterface>(op)) {
          if (auto func = dyn_cast<func::FuncOp>(call.resolveCallable())) {
            PropagatePotentiallyWrittenUpFromCallee(func.getRegion(),
                                                    call.getArgOperands());
          }
          return;
        }
        if (auto if_op = dyn_cast<TF::IfOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * is accepted, then this future is guaranteed to have been completed with the supplied future by
       * the time this method returns. If the supplied future is not done and the call is accepted, then
       * the future will be <i>set asynchronously</i>. Note that such a result, though not yet known,
       * cannot be overridden by a call to a {@code set*} method, only by a call to {@link #cancel}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  7. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * is accepted, then this future is guaranteed to have been completed with the supplied future by
       * the time this method returns. If the supplied future is not done and the call is accepted, then
       * the future will be <i>set asynchronously</i>. Note that such a result, though not yet known,
       * cannot be overridden by a call to a {@code set*} method, only by a call to {@link #cancel}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

                        error("expected a configuring lambda in the call of ${function.schemaFunction}, but it was not provided")
                }
            } else if (lambda != null) {
                error("a lambda is not expected in the call of ${function.schemaFunction}, but it was provided")
            }
        }
    
        private
        fun AnalysisContext.doRecordSemanticsSideEffects(
            call: FunctionCall,
            semantics: FunctionSemantics,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveCandidatesTest.kt

            if (candidates.isEmpty()) {
                testServices.assertions.assertEquals(null, resolvedCall) {
                    "Inconsistency between candidates and resolved call. " +
                            "Resolved call is not null, but no candidates found.\n" +
                            stringRepresentation(resolvedCall)
                }
            } else {
                if (resolvedCall == null) return
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/runtime/mfinal.go

    // call KeepAlive(p) after the call to syscall.Write.
    //
    // A single goroutine runs all finalizers for a program, sequentially.
    // If a finalizer must run for a long time, it should do so by starting
    // a new goroutine.
    //
    // In the terminology of the Go memory model, a call
    // SetFinalizer(x, f) “synchronizes before” the finalization call f(x).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top