Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 195 for aframe (0.17 sec)

  1. src/runtime/mgcstack.go

    // of a goroutine.
    type stackScanState struct {
    	// stack limits
    	stack stack
    
    	// conservative indicates that the next frame must be scanned conservatively.
    	// This applies only to the innermost frame at an async safe-point.
    	conservative bool
    
    	// buf contains the set of possible pointers to stack objects.
    	// Organized as a LIFO linked list of buffers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    }
    
    //go:generate go run mkpreempt.go
    
    // asyncPreempt saves all user registers and calls asyncPreempt2.
    //
    // When stack scanning encounters an asyncPreempt frame, it scans that
    // frame and its parent frame conservatively.
    //
    // asyncPreempt is implemented in assembly.
    func asyncPreempt()
    
    //go:nosplit
    func asyncPreempt2() {
    	gp := getg()
    	gp.asyncSafePoint = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/image/gif/writer_test.go

    		if m0.Bounds() != m1.Bounds() {
    			t.Errorf("frame %d: bounds differ: %v and %v", i, m0.Bounds(), m1.Bounds())
    		}
    		d0, d1 := g0.Delay[i], g1.Delay[i]
    		if d0 != d1 {
    			t.Errorf("frame %d: delay values differ: %d and %d", i, d0, d1)
    		}
    		p0, p1 := uint8(0), g1.Disposal[i]
    		if go1Dot5Fields {
    			p0 = DisposalNone
    		}
    		if p0 != p1 {
    			t.Errorf("frame %d: disposal values differ: %d and %d", i, p0, p1)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/operand_test.go

    	{"$-24(R4)", "$-24(R4)"},
    	{"$0", "$0"},
    	{"$0(R1)", "$(R1)"},
    	{"$0.5", "$(0.5)"},
    	{"$0x7000", "$28672"},
    	{"$0x88888eef", "$2290650863"},
    	{"$1", "$1"},
    	{"$_main<>(SB)", "$_main<>(SB)"},
    	{"$argframe(FP)", "$argframe(FP)"},
    	{"$runtime·tlsg(SB)", "$runtime.tlsg(SB)"},
    	{"$~3", "$-4"},
    	{"(-288-3*8)(R1)", "-312(R1)"},
    	{"(16)(R7)", "16(R7)"},
    	{"(8)(g)", "8(g)"},
    	{"(CTR)", "(CTR)"},
    	{"(R0)", "(R0)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        // Note: we don't process server frames so our client 'close' doesn't receive a server 'close'.
        assertThat(client.canceled).isFalse()
    
        taskFaker.advanceUntil(ns(4_999))
        assertThat(client.canceled).isFalse()
    
        taskFaker.advanceUntil(ns(5_000))
        assertThat(client.canceled).isTrue()
    
        client.processNextFrame() // This won't get a frame, but it will get a closed pipe.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof.go

    			// This is useful mainly for allocation traces.
    			show = true
    			fmt.Fprintf(w, "#\t%#x\t%s+%#x\t%s:%d\n", frame.PC, name, frame.PC-frame.Entry, frame.File, frame.Line)
    		}
    		if !more {
    			break
    		}
    	}
    	if !show {
    		// We didn't print anything; do it again,
    		// and this time include runtime functions.
    		printStackRecord(w, stk, true)
    		return
    	}
    	fmt.Fprintf(w, "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/protobuf/protobuf.go

    var LengthDelimitedFramer = lengthDelimitedFramer{}
    
    // Provides length delimited frame reader and writer methods
    type lengthDelimitedFramer struct{}
    
    // NewFrameWriter implements stream framing for this serializer
    func (lengthDelimitedFramer) NewFrameWriter(w io.Writer) io.Writer {
    	return framer.NewLengthDelimitedFrameWriter(w)
    }
    
    // NewFrameReader implements stream framing for this serializer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 13:38:23 UTC 2022
    - 17.8K bytes
    - Viewed (0)
  8. src/runtime/asm_386.s

    	MOVL	CX, SP
    	MOVL	AX, ret+8(FP)
    	RET
    
    // cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
    // See cgocall.go for more details.
    TEXT ·cgocallback(SB),NOSPLIT,$12-12  // Frame size must match commented places below
    	NO_LOCAL_POINTERS
    
    	// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
    	// It is used to dropm while thread is exiting.
    	MOVL	fn+0(FP), AX
    	CMPL	AX, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    	Serializer       runtime.Serializer
    	PrettySerializer runtime.Serializer
    	StrictSerializer runtime.Serializer
    
    	AcceptStreamContentTypes []string
    	StreamContentType        string
    
    	Framer           runtime.Framer
    	StreamSerializer runtime.Serializer
    }
    
    func newSerializersForScheme(scheme *runtime.Scheme, mf json.MetaFactory, options CodecFactoryOptions) []serializerType {
    	jsonSerializer := json.NewSerializerWithOptions(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. src/image/gif/reader.go

    	// LoopCount controls the number of times an animation will be
    	// restarted during display.
    	// A LoopCount of 0 means to loop forever.
    	// A LoopCount of -1 means to show each frame only once.
    	// Otherwise, the animation is looped LoopCount+1 times.
    	LoopCount int
    	// Disposal is the successive disposal methods, one per frame. For
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top