Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 141 for stacklo (0.13 sec)

  1. src/cmd/trace/regions.go

    }
    .details td {
      text-align: right;
      border: 1px solid #000;
    }
    .details td.id {
      text-align: left;
    }
    .stacked-bar-graph {
      width: 300px;
      height: 10px;
      color: #414042;
      white-space: nowrap;
      font-size: 5px;
    }
    .stacked-bar-graph span {
      display: inline-block;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      float: left;
      padding: 0;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/runtime/defs2_linux.go

    type Xmmreg C.struct__xmmreg
    type Fpstate C.struct__fpstate
    type Timespec C.struct_timespec
    type Timeval C.struct_timeval
    type Sigaction C.struct_kernel_sigaction
    type Siginfo C.siginfo_t
    type StackT C.stack_t
    type Sigcontext C.struct_sigcontext
    type Ucontext C.struct_ucontext
    type Itimerval C.struct_itimerval
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  3. src/main/assemblies/extension/kibana/fess_log.ndjson

    tyle\":{},\"scale\":{\"type\":\"linear\",\"mode\":\"normal\"},\"labels\":{\"show\":true,\"rotate\":0,\"filter\":false,\"truncate\":100},\"title\":{\"text\":\"Query Count\"}}],\"seriesParams\":[{\"show\":\"true\",\"type\":\"histogram\",\"mode\":\"stacked\",\"data\":{\"label\":\"Query Count\",\"id\":\"1\"},\"valueAxis\":\"ValueAxis-1\",\"drawLinesBetweenPoints\":true,\"showCircles\":true}],\"addTooltip\":true,\"addLegend\":true,\"legendPosition\":\"right\",\"times\":[],\"addTimeMarker\":false,\"di...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  4. src/runtime/defs_solaris.go

    	POLLERR = C.POLLERR
    
    	PORT_SOURCE_FD    = C.PORT_SOURCE_FD
    	PORT_SOURCE_ALERT = C.PORT_SOURCE_ALERT
    	PORT_ALERT_UPDATE = C.PORT_ALERT_UPDATE
    )
    
    type SemT C.sem_t
    
    type Sigset C.sigset_t
    type StackT C.stack_t
    
    type Siginfo C.siginfo_t
    type Sigaction C.struct_sigaction
    
    type Fpregset C.fpregset_t
    type Mcontext C.mcontext_t
    type Ucontext C.ucontext_t
    
    type Timespec C.struct_timespec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 17:47:39 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. src/runtime/sys_plan9_amd64.s

    	MOVL	AX, ret+8(FP)
    	RET
    
    TEXT runtime·tstart_plan9(SB),NOSPLIT,$8
    	MOVQ	newm+0(FP), CX
    	MOVQ	m_g0(CX), DX
    
    	// Layout new m scheduler stack on os stack.
    	MOVQ	SP, AX
    	MOVQ	AX, (g_stack+stack_hi)(DX)
    	SUBQ	$(64*1024), AX		// stack size
    	MOVQ	AX, (g_stack+stack_lo)(DX)
    	MOVQ	AX, g_stackguard0(DX)
    	MOVQ	AX, g_stackguard1(DX)
    
    	// Initialize procid from TOS struct.
    	MOVQ	_tos(SB), AX
    	MOVL	64(AX), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 16:41:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/runtime/sys_plan9_386.s

    	MOVL	AX, ret+4(FP)
    	RET
    
    TEXT runtime·tstart_plan9(SB),NOSPLIT,$4
    	MOVL	newm+0(FP), CX
    	MOVL	m_g0(CX), DX
    
    	// Layout new m scheduler stack on os stack.
    	MOVL	SP, AX
    	MOVL	AX, (g_stack+stack_hi)(DX)
    	SUBL	$(64*1024), AX		// stack size
    	MOVL	AX, (g_stack+stack_lo)(DX)
    	MOVL	AX, g_stackguard0(DX)
    	MOVL	AX, g_stackguard1(DX)
    
    	// Initialize procid from TOS struct.
    	MOVL	_tos(SB), AX
    	MOVL	48(AX), AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprogcgo/stackswitch.c

    	stackSwitchCallback();
    
    	// Next, verify that switching stacks doesn't break callbacks.
    
    	char *stack1 = malloc(STACK_SIZE);
    	if (stack1 == NULL) {
    		perror("malloc");
    		exit(1);
    	}
    
    	// Allocate the second stack before freeing the first to ensure we don't get
    	// the same address from malloc.
    	//
    	// Will be freed in stackSwitchThread2.
    	stack2 = malloc(STACK_SIZE);
    	if (stack1 == NULL) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/runtime/defs_freebsd.go

    	EVFILT_WRITE = C.EVFILT_WRITE
    	EVFILT_USER  = C.EVFILT_USER
    
    	NOTE_TRIGGER = C.NOTE_TRIGGER
    )
    
    type Rtprio C.struct_rtprio
    type ThrParam C.struct_thr_param
    type Sigset C.struct___sigset
    type StackT C.stack_t
    
    type Siginfo C.siginfo_t
    
    type Mcontext C.mcontext_t
    type Ucontext C.ucontext_t
    
    type Timespec C.struct_timespec
    type Timeval C.struct_timeval
    type Itimerval C.struct_itimerval
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/runtime/tracecpu.go

    		var flushed bool
    		w, flushed = w.ensure(2 + 5*traceBytesPerNumber /* traceEvCPUSamples + traceEvCPUSample + timestamp + g + m + p + stack ID */)
    		if flushed {
    			// Annotate the batch as containing strings.
    			w.byte(byte(traceEvCPUSamples))
    		}
    
    		// Add the stack to the table.
    		stackID := trace.stackTab[gen%2].put(pcBuf[:nstk])
    
    		// Write out the CPU sample.
    		w.byte(byte(traceEvCPUSample))
    		w.varint(timestamp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_riscv64.s

    	ANDI	$~7, X2 // Align for C code
    	MOV	$8(X2), A1
    
    	// Store g on gsignal's stack, see sys_linux_arm64.s for detail
    	MOVBU	runtime·iscgo(SB), S4
    	BNEZ	S4, nosaveg
    	MOV	m_gsignal(S3), S4 // g.m.gsignal
    	BEQZ	S4, nosaveg
    	BEQ	g, S4, nosaveg
    	MOV	(g_stack+stack_lo)(S4), S4 // g.m.gsignal.stack.lo
    	MOV	g, (S4)
    
    	JALR	RA, A7
    
    	MOV	ZERO, (S4)
    	JMP	finish
    
    nosaveg:
    	JALR	RA, A7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top