Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for callsite (0.49 sec)

  1. src/runtime/traceback_test.go

    //go:noinline
    func ttiSigpanic1() (res *ttiResult) {
    	defer func() {
    		res = ttiLeaf()
    		recover()
    	}()
    	ttiSigpanic2()
    	// without condition below the inliner might decide to de-prioritize
    	// the callsite above (since it would be on an "always leads to panic"
    	// path).
    	if alwaysTrue {
    		panic("did not panic")
    	}
    	return nil
    }
    func ttiSigpanic2() {
    	ttiSigpanic3()
    }
    func ttiSigpanic3() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    	p  *Prog
    	id int32
    }
    
    // Mark p as the instruction to set as the pc when
    // "unwinding" the inlining global frame id. Usually it should be
    // instruction with a file:line at the callsite, and occur
    // just before the body of the inlined function.
    func (fi *FuncInfo) AddInlMark(p *Prog, id int32) {
    	fi.InlMarks = append(fi.InlMarks, InlMark{p: p, id: id})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/service.go

    	sep := "|"
    	// This could be the DNS srv form of the cluster that uses outbound_.port_.subset_.hostname
    	// Since we do not want every callsite to implement the logic to differentiate between the two forms
    	// we add an alternate parser here.
    	if strings.HasPrefix(s, trafficDirectionOutboundSrvPrefix) ||
    		strings.HasPrefix(s, trafficDirectionInboundSrvPrefix) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/size.go

    }
    
    // CalcSize calculates and stores the size, alignment, eq/hash algorithm,
    // and ptrBytes for t.
    // If CalcSizeDisabled is set, and the size/alignment
    // have not already been calculated, it calls Fatal.
    // This is used to prevent data races in the back end.
    func CalcSize(t *Type) {
    	// Calling CalcSize when typecheck tracing enabled is not safe.
    	// See issue #33658.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/stackcheck.go

    		return 0, nil
    	}
    	if sym == stackCheckIndirect {
    		// Assume that indirect/closure calls are always to
    		// splittable functions, so they just need enough room
    		// to call morestack.
    		return sc.callSize, []stackCheckEdge{{sc.callSize, sc.morestack}}
    	}
    
    	// Ignore calls to external functions. Assume that these calls
    	// are only ever happening on the system stack, where there's
    	// plenty of room.
    	if ldr.AttrExternal(sym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    ====
    include::sample[dir="snippets/providers/propertyConventionCallsites/kotlin",files="build.gradle.kts[tags=convention-callsites]"]
    include::sample[dir="snippets/providers/propertyConventionCallsites/groovy",files="build.gradle[tags=convention-callsites]"]
    ====
    
    ==== From a plugin's `apply()` method
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. test/nosplit.go

    # Ordinary stack split frame is always okay.
    start 112
    start 116
    start 120
    start 124
    start 128
    start 132
    start 136
    
    # A nosplit leaf can use the whole 128-CallSize bytes available on entry.
    # (CallSize is 32 on ppc64, 8 on amd64 for frame pointer.)
    start 96 nosplit
    start 100 nosplit; REJECT ppc64 ppc64le
    start 104 nosplit; REJECT ppc64 ppc64le arm64
    start 108 nosplit; REJECT ppc64 ppc64le
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/expr.go

    					base.Errorf("invalid operation: %v (operator %v not defined on %s)", n, op, typekind(l.Type()))
    					return l, r, nil
    				}
    
    				types.CalcSize(l.Type())
    				if r.Type().IsInterface() == l.Type().IsInterface() || l.Type().Size() >= 1<<16 {
    					l = ir.NewConvExpr(base.Pos, aop, r.Type(), l)
    					l.SetTypecheck(1)
    				}
    
    				t = r.Type()
    				converted = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/complit.go

    		te := types.NewArray(n.Type().Elem(), int64(len(entries)))
    
    		// TODO(#47904): mark tk and te NoAlg here once the
    		// compiler/linker can handle NoAlg types correctly.
    
    		types.CalcSize(tk)
    		types.CalcSize(te)
    
    		// make and initialize static arrays
    		vstatk := readonlystaticname(tk)
    		vstate := readonlystaticname(te)
    
    		datak := ir.NewCompLitExpr(base.Pos, ir.OARRAYLIT, nil, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

      mlir::Location unwrapped_inst_loc = GetLocationWithoutOpType(inst_loc);
    
      if (auto call_site = mlir::dyn_cast<mlir::CallSiteLoc>(unwrapped_inst_loc)) {
        if (auto name_loc = mlir::dyn_cast<mlir::NameLoc>(
                GetLocationWithoutOpType(call_site.getCallee()))) {
          llvm::StringRef original_node_name, original_func_name;
          std::tie(original_node_name, original_func_name) =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top