Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 90 for tracebackF1 (0.3 sec)

  1. src/runtime/mgc.go

    	setGCPhase(_GCmarktermination)
    
    	work.heap1 = gcController.heapLive.Load()
    	startTime := nanotime()
    
    	mp := acquirem()
    	mp.preemptoff = "gcing"
    	mp.traceback = 2
    	curgp := mp.curg
    	// N.B. The execution tracer is not aware of this status
    	// transition and handles it specially based on the
    	// wait reason.
    	casGToWaitingForGC(curgp, _Grunning, waitReasonGarbageCollection)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    		return nil, err
    	}
    
    	cleanupDuplicateLocations(p)
    	return p, nil
    }
    
    // parseThreadSample parses a symbolized or unsymbolized stack trace.
    // Returns the first line after the traceback, the sample (or nil if
    // it hits a 'same-as-previous' marker) and an error.
    func parseThreadSample(s *bufio.Scanner) (nextl string, addrs []uint64, err error) {
    	var line string
    	sameAsPrevious := false
    	for s.Scan() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  3. src/runtime/export_test.go

    func SetEnvs(e []string) { envs = e }
    
    const PtrSize = goarch.PtrSize
    
    var ForceGCPeriod = &forcegcperiod
    
    // SetTracebackEnv is like runtime/debug.SetTraceback, but it raises
    // the "environment" traceback level, so later calls to
    // debug.SetTraceback (e.g., from testing timeouts) can't lower it.
    func SetTracebackEnv(level string) {
    	setTraceback(level)
    	traceback_env = traceback_cache
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  4. doc/asm.html

    Only valid on functions that declare a frame size of 0.
    </li>
    <li>
    <code>TOPFRAME</code> = 2048
    <br>
    (For <code>TEXT</code> items.)
    Function is the outermost frame of the call stack. Traceback should stop at this function.
    </li>
    </ul>
    
    <h3 id="special-instructions">Special instructions</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  5. src/cmd/compile/internal/liveness/plive.go

    		// functions makeFuncStub and methodValueCall. The runtime expects
    		// that it can find the first argument (ctxt) at 0(SP) in makeFuncStub
    		// and methodValueCall's frame (see runtime/traceback.go:getArgInfo).
    		// Normally callReflect and callMethod already do not modify the
    		// argument, and keep it alive. But the compiler-generated ABI wrappers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    	}
    	print("\n")
    	if refBase != 0 {
    		print("runtime: found in object at *(", hex(refBase), "+", hex(refOff), ")\n")
    		gcDumpObject("object", refBase, refOff)
    	}
    	getg().m.traceback = 2
    	throw("found bad pointer in Go heap (incorrect use of unsafe or cgo?)")
    }
    
    // findObject returns the base address for the heap object containing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. fastapi/applications.py

        ```
        """
    
        def __init__(
            self: AppType,
            *,
            debug: Annotated[
                bool,
                Doc(
                    """
                    Boolean indicating if debug tracebacks should be returned on server
                    errors.
    
                    Read more in the
                    [Starlette docs for Applications](https://www.starlette.io/applications/#instantiating-the-application).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    			}
    			s.SetPos(p)
    		} else {
    			s.SetPos(s.pp.Pos.WithNotStmt())
    		}
    	}
    }
    
    // emit argument info (locations on stack) for traceback.
    func emitArgInfo(e *ssafn, f *ssa.Func, pp *objw.Progs) {
    	ft := e.curfn.Type()
    	if ft.NumRecvs() == 0 && ft.NumParams() == 0 {
    		return
    	}
    
    	x := EmitArgInfo(e.curfn, f.OwnAux.ABIInfo())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    gives module error.
    For example,
    
    Example 1:
    
    >>> a = [1., 2., 3.]
    >>> equality_bitcast = tf.bitcast(a, tf.complex128)
    Traceback (most recent call last):
    ...
    InvalidArgumentError: Cannot bitcast from 1 to 18 [Op:Bitcast]
    >>> equality_cast = tf.cast(a, tf.complex128)
    >>> print(equality_cast)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. RELEASE.md

        `tf.debugging.enable_traceback_filtering()`. If you are debugging a
        TensorFlow-internal issue (e.g. to prepare a TensorFlow PR), make sure to
        disable traceback filtering. You can check whether this feature is currently
        enabled by calling `tf.debugging.is_traceback_filtering_enabled()`.
    
        Note that this feature is only available with Python 3.7 or higher.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top