Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 525 for Atack (0.03 sec)

  1. src/runtime/stack.go

    	// allocation.
    	if newsize < fixedStack {
    		return
    	}
    	// Compute how much of the stack is currently in use and only
    	// shrink the stack if gp is using less than a quarter of its
    	// current stack. The currently used stack includes everything
    	// down to the SP plus the stack guard space that ensures
    	// there's room for nosplit functions.
    	avail := gp.stack.hi - gp.stack.lo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/stackcheck.go

    	// Check special cases.
    	if sym == sc.morestack {
    		// morestack looks like it calls functions, but they
    		// either happen only when already on the system stack
    		// (where there is ~infinite space), or after
    		// switching to the system stack. Hence, its stack
    		// height on the user stack is 0.
    		return 0, nil
    	}
    	if sym == stackCheckIndirect {
    		// Assume that indirect/closure calls are always to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/constants/constants_test.go

    		},
    		{
    			svcSubnetList: "fd03::/112,192.168.10.0/24",
    			expected:      "fd03::/112",
    			expectedError: false,
    			name:          "valid: valid <IPv6,IPv4> ranges from dual-stack",
    		},
    		{
    			svcSubnetList: "192.168.10.0/24,fd03:x::/112",
    			expected:      "",
    			expectedError: true,
    			name:          "invalid: failed to parse subnet range for dual-stack",
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/wasm/ssa.go

       the Wasm stack each time we want to switch goroutines.
    
       To support unwinding a stack, each function call returns on the Wasm
       stack a boolean that tells the function whether it should return
       immediately or not. When returning immediately, a return address
       is left on the top of the Go stack indicating where the goroutine
       should be resumed.
    
       Stack pointer:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    }
    
    type g struct {
    	// Stack parameters.
    	// stack describes the actual stack memory: [stack.lo, stack.hi).
    	// stackguard0 is the stack pointer compared in the Go stack growth prologue.
    	// It is stack.lo+StackGuard normally, but can be StackPreempt to trigger a preemption.
    	// stackguard1 is the stack pointer compared in the //go:systemstack stack growth prologue.
    	// It is stack.lo+StackGuard on g0 and gsignal stacks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/emitter.go

    		Name:  "process_sort_index",
    		Phase: "M",
    		PID:   sectionID,
    		Arg:   &format.SortIndexArg{Index: priority},
    	})
    }
    
    // Stack emits the given frames and returns a unique id for the stack. No
    // pointers to the given data are being retained beyond the call to Stack.
    func (e *Emitter) Stack(stk []*trace.Frame) int {
    	return e.buildBranch(e.frameTree, stk)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    	//
    	// For cdecl and stdcall, all arguments are on the stack.
    	//
    	// For fastcall, the trampoline spills register arguments to
    	// the reserved spill slots below the stack arguments,
    	// resulting in a layout equivalent to stdcall.
    	//
    	// For arm, the trampoline stores the register arguments just
    	// below the stack arguments, so again we can treat it as one
    	// big stack arguments frame.
    	args unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/runtime/callers_test.go

    	// running the remaining deferred functions.
    	//
    	// This test does not verify the accuracy of the call stack (it
    	// currently includes a frame from runtime.deferreturn which would
    	// normally be omitted). It is only intended to check that producing the
    	// call stack won't crash.
    	defer func() {
    		pcs := make([]uintptr, 32)
    		for i := range pcs {
    			// If runtime.recovery doesn't properly restore the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 21:36:31 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. src/runtime/traceruntime.go

    //
    // nosplit because it's called on the syscall path when stack movement is forbidden.
    //
    //go:nosplit
    func (tl traceLocker) ok() bool {
    	return tl.gen != 0
    }
    
    // traceRelease indicates that this M is done writing trace events.
    //
    // nosplit because it's called on the syscall path when stack movement is forbidden.
    //
    //go:nosplit
    func traceRelease(tl traceLocker) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. pkg/proxy/util/utils_test.go

    			},
    		},
    
    		{
    			name:           "service single stack ipv4. want ipv4",
    			requestFamily:  v1.IPv4Protocol,
    			expectedResult: "10.0.0.10",
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIPs: []string{"10.0.0.10"},
    					IPFamilies: []v1.IPFamily{v1.IPv4Protocol},
    				},
    			},
    		},
    
    		{
    			name:           "service single stack ipv4. want ipv6",
    			requestFamily:  v1.IPv6Protocol,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top