Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for frame_0 (0.4 sec)

  1. src/reflect/value.go

    func valueMethodName() string {
    	var pc [5]uintptr
    	n := runtime.Callers(1, pc[:])
    	frames := runtime.CallersFrames(pc[:n])
    	var frame runtime.Frame
    	for more := true; more; {
    		const prefix = "reflect.Value."
    		frame, more = frames.Next()
    		name := frame.Function
    		if len(name) > len(prefix) && name[:len(prefix)] == prefix {
    			methodName := name[len(prefix):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/net/http/server.go

    func relevantCaller() runtime.Frame {
    	pc := make([]uintptr, 16)
    	n := runtime.Callers(1, pc)
    	frames := runtime.CallersFrames(pc[:n])
    	var frame runtime.Frame
    	for {
    		frame, more := frames.Next()
    		if !strings.HasPrefix(frame.Function, "net/http.") {
    			return frame
    		}
    		if !more {
    			break
    		}
    	}
    	return frame
    }
    
    func (w *response) WriteHeader(code int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    // trace as well as any additional frames needed for frame pointer unwinding
    // with delayed inline expansion.
    func makeProfStackFP() []uintptr {
    	// The "1" term is to account for the first stack entry being
    	// taken up by a "skip" sentinel value for profilers which
    	// defer inline frame expansion until the profile is reported.
    	// The "maxSkip" term is for frame pointer unwinding, where we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    //
    // During reflect.Value.Call, we create an argument frame and the associated data structures
    // to describe it to the garbage collector, populate the frame, call reflect.call to
    // run a function call using that frame, and then copy the results back out of the frame.
    // The reflect.call function does a memmove of the frame structure onto the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "engines": {
            "node": ">=0.10.0"
          }
        },
        "node_modules/@babel/code-frame": {
          "version": "7.21.4",
          "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz",
          "integrity": "sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==",
          "dev": true,
          "dependencies": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Roderick Parr <******@****.***>
    forgeblocks.com
    id.forgerock.io
    
    // Framer : https://www.framer.com
    // Submitted by Koen Rouwhorst <koenrh@framer.com>
    framer.app
    framercanvas.com
    framer.media
    framer.photos
    framer.website
    framer.wiki
    
    // Frusky MEDIA&PR : https://www.frusky.de
    // Submitted by Victor Pupynin <******@****.***>
    *.frusky.de
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        )
        server.enqueue(
          MockResponse(body = "def"),
        )
    
        // Send a separate request which will trigger a GOAWAY frame on the healthy connection.
        val response = getResponse(newRequest("/"))
        assertContent("abc", response)
    
        // Ensure the GOAWAY frame has time to be read and processed.
        Thread.sleep(500)
        assertContent(
          "def",
          getResponse(
            Request(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	PT_TLS     ProgType = 7 /* Thread local storage segment */
    
    	PT_LOOS ProgType = 0x60000000 /* First OS-specific. */
    
    	PT_GNU_EH_FRAME ProgType = 0x6474e550 /* Frame unwind information */
    	PT_GNU_STACK    ProgType = 0x6474e551 /* Stack flags */
    	PT_GNU_RELRO    ProgType = 0x6474e552 /* Read only after relocs */
    	PT_GNU_PROPERTY ProgType = 0x6474e553 /* GNU property */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          DVLOG(1) << "Stack available for " << node.name();
          for (const StackFrame& frame : stack_trace->ToFrames()) {
            auto file_name = mlir::StringAttr::get(context_, frame.file_name);
            // Use col 1 as there is no column info in StackTrace.
            auto file_line_loc =
                mlir::FileLineColLoc::get(file_name, frame.line_number, 1);
            locations.push_back(file_line_loc);
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    		case obj.NAME_AUTO:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			// The frame top 8 or 16 bytes are for FP
    			c.instoffset = int64(c.autosize) + a.Offset - int64(c.extrasize)
    			return autoclass(c.instoffset)
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top