Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Frame (0.07 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/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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Ant-Version: Apache Ant 1.8.1 Created-By: 1.6.0_33-b03 (Sun Microsystems Inc.) allclasses-frame.html All Classes AllOf AnyOf ArrayIterator BaseDescription BaseMatcher CombinableMatcher CombinableMatcher.CombinableBothMatche CombinableMatcher.CombinableEitherMatc Condition Condition.Step CoreMatchers CustomMatcher CustomTypeSafeMatche DescribedAs Description Description.NullDescription DiagnosingMatcher Every Factory FeatureMatcher Is IsAnything IsCollectionContaini...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K 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/encoding/json/testdata/code.json.gz

    9707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"frame-element-name-expected.png","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"frame-navigation-expected.png","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1228525763,"max_t":1236205616,"mean_t":1232365689},{"name":"frameElement-frame-expected.checksum","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"min_t":1...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top