Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 223 for frameset (0.31 sec)

  1. docs/contribute/concurrency.md

    So we have a dedicated thread for every socket that just reads frames and dispatches them.
    
    The reader thread must never run application-layer code. Otherwise one slow stream can hold up the entire connection.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  2. src/reflect/asm_riscv64.s

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "funcdata.h"
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 01:41:42 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. src/runtime/traceback_system_test.go

    func formatStack(pcs []uintptr) string {
    	// When debugging, show file/line/content of files other than this one.
    	const debug = false
    
    	var buf strings.Builder
    	i := 0
    	frames := runtime.CallersFrames(pcs)
    	for {
    		fr, more := frames.Next()
    		if debug {
    			fmt.Fprintf(&buf, "pc=%x ", pcs[i])
    			i++
    		}
    		if base := filepath.Base(fr.File); base == "traceback_system_test.go" || debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/reflect/asm_loong64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "funcdata.h"
    
    #define	REGCTXT	R29
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/reflect/asm_arm64.s

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "funcdata.h"
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. src/reflect/asm_amd64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "funcdata.h"
    #include "go_asm.h"
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 01 22:33:29 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. src/image/gif/writer_test.go

    			return false
    		}
    	}
    	return true
    }
    
    var frames = []string{
    	"../testdata/video-001.gif",
    	"../testdata/video-005.gray.gif",
    }
    
    func testEncodeAll(t *testing.T, go1Dot5Fields bool, useGlobalColorModel bool) {
    	const width, height = 150, 103
    
    	g0 := &GIF{
    		Image:     make([]*image.Paletted, len(frames)),
    		Delay:     make([]int, len(frames)),
    		LoopCount: 5,
    	}
    	for i, f := range frames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/runtime/crash_unix_test.go

    	sysFunc := "blockOnSystemStackInternal"
    	nUser := bytes.Count(tb, []byte(userFunc))
    	nSys := bytes.Count(tb, []byte(sysFunc))
    	if nUser != 2 || nSys != 2 {
    		t.Fatalf("want %d user stack frames in %s and %d system stack frames in %s, got %d and %d:\n%s", 2, userFunc, 2, sysFunc, nUser, nSys, string(tb))
    	}
    
    	// Traceback should not contain "unexpected SPWRITE" when
    	// unwinding the system stacks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. src/internal/profile/graph.go

    			delete(seenEdge, k)
    		}
    		var parent *Node
    		// A residual edge goes over one or more nodes that were not kept.
    		residual := false
    
    		// Group the sample frames, based on a global map.
    		// Count only the last two frames as a call edge. Frames higher up
    		// the stack are unlikely to be repeated calls (e.g. runtime.main
    		// calling main.main). So adding weights to call edges higher up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

          .isEqualTo("<< 0x00000003   226 DATA          END_STREAM")
        assertThat(frameLog(false, 0, 8, TYPE_GOAWAY, FLAG_NONE))
          .isEqualTo(">> 0x00000000     8 GOAWAY        ")
      }
    
      /** Window update frames have special formatting.  */
      @Test
      fun windowUpdateFrames() {
        assertThat(frameLogWindowUpdate(false, 0, 4, Int.MAX_VALUE.toLong()))
          .isEqualTo(">> 0x00000000     4 WINDOW_UPDATE 2147483647")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top