Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 195 for aframe (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    	conn.resetTimeout()
    	switch conn.codec {
    	case rawCodec:
    		frame := make([]byte, len(data)+1)
    		frame[0] = num
    		copy(frame[1:], data)
    		if err := websocket.Message.Send(conn.ws, frame); err != nil {
    			return 0, err
    		}
    	case base64Codec:
    		frame := string('0'+num) + base64.StdEncoding.EncodeToString(data)
    		if err := websocket.Message.Send(conn.ws, frame); err != nil {
    			return 0, err
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. src/runtime/asm_ppc64x.s

    	RET
    
    // func cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
    // See cgocall.go for more details.
    TEXT ·cgocallback(SB),NOSPLIT,$24-24
    	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.
    	MOVD	fn+0(FP), R5
    	CMP	R5, $0
    	BNE	loadg
    	// Restore the g from frame.
    	MOVD	frame+8(FP), g
    	BR	dropm
    
    loadg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. src/runtime/asm_riscv64.s

    TEXT runtime·memhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-32
    	JMP	runtime·memhashFallback<ABIInternal>(SB)
    TEXT runtime·strhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·strhashFallback<ABIInternal>(SB)
    TEXT runtime·memhash32<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash32Fallback<ABIInternal>(SB)
    TEXT runtime·memhash64<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
    	JMP	runtime·memhash64Fallback<ABIInternal>(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  4. api/go1.7.txt

    pkg runtime, func CallersFrames([]uintptr) *Frames
    pkg runtime, func KeepAlive(interface{})
    pkg runtime, func SetCgoTraceback(int, unsafe.Pointer, unsafe.Pointer, unsafe.Pointer)
    pkg runtime, method (*Frames) Next() (Frame, bool)
    pkg runtime, type Frame struct
    pkg runtime, type Frame struct, Entry uintptr
    pkg runtime, type Frame struct, File string
    pkg runtime, type Frame struct, Func *Func
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  5. internal/s3select/message.go

    	"encoding/binary"
    	"fmt"
    	"hash/crc32"
    	"net/http"
    	"strconv"
    	"sync/atomic"
    	"time"
    )
    
    // A message is in the format specified in
    // https://docs.aws.amazon.com/AmazonS3/latest/API/images/s3select-frame-diagram-frame-overview.png
    // hence the calculation is made accordingly.
    func totalByteLength(headerLength, payloadLength int) int {
    	return 4 + 4 + 4 + headerLength + payloadLength + 4
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  6. src/runtime/syscall_windows.go

    	}
    	if a.srcStackOffset+a.len == b.srcStackOffset && a.dstStackOffset+a.len == b.dstStackOffset {
    		a.len += b.len
    		return true
    	}
    	return false
    }
    
    // abiDesc specifies how to translate from a C frame to a Go
    // frame. This does not specify how to translate back because
    // the result is always a uintptr. If the C ABI is fastcall,
    // this assumes the four fastcall registers were first spilled
    // to the shadow space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/runtime/asm_loong64.s

    	RET
    
    // func cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
    // See cgocall.go for more details.
    TEXT ·cgocallback(SB),NOSPLIT,$24-24
    	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.
    	MOVV    fn+0(FP), R5
    	BNE	R5, loadg
    	// Restore the g from frame.
    	MOVV    frame+8(FP), g
    	JMP	dropm
    
    loadg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	MOVW PSALAA, R8
    	MOVD LCA64(R8), R8
    	MOVD CAA(R8), R9
    	MOVD g, GOCB(R9)
    
    	// Restore LE stack.
    	MOVD SAVSTACK_ASYNC(R8), R9 // R9-> LE stack frame saving address
    	MOVD 0(R9), R4              // R4-> restore previously saved stack frame pointer
    
    	MOVD parms_base+8(FP), R7 // R7 -> argument array
    	MOVD parms_len+16(FP), R8 // R8 number of arguments
    
    	//  arg 1 ---> R1
    	CMP  R8, $0
    	BEQ  docall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_cluster_util.cc

            // Lift edges to an "Enter" node to the corresponding frame node.
            const string& frame_name =
                control_flow_info[edge->dst()->id()].frame_name;
            dst = GetOrAddFrameNodeId(frame_name);
            dst_type = "frame";
          }
    
          if (edge->src()->IsExit()) {
            // Lift edges from an "Exit" node to the corresponding frame node.
            const string& frame_name =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. src/runtime/signal_windows.go

    	}
    	// The Windows SEH machinery will unwind the stack until it finds
    	// a frame with a handler for the exception or until the frame is
    	// outside the stack boundaries, in which case it will call the
    	// UnhandledExceptionFilter. Unfortunately, it doesn't know about
    	// the goroutine stack, so it will stop unwinding when it reaches the
    	// first frame not running in g0. As a result, neither non-Go exceptions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top