Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 269 for Atack (0.04 sec)

  1. src/cmd/compile/internal/types2/validtype.go

    // its value is looked up in the type argument list of the instantiated
    // (enclosing) type, if it exists. Otherwise the type parameter must be from
    // an enclosing function and can be ignored.
    // The nest list describes the stack (the "nest in memory") of types which
    // contain (or embed in the case of interfaces) other types. For instance, a
    // struct named S which contains a field of named type F contains (the memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/go/script_test.go

    		// grace periods to clean up. We will send the first termination signal when
    		// the context expires, then wait one grace period for the process to
    		// produce whatever useful output it can (such as a stack trace). After the
    		// first grace period expires, we'll escalate to os.Kill, leaving the second
    		// grace period for the test function to record its output before the test
    		// process itself terminates.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/go/types/validtype.go

    // its value is looked up in the type argument list of the instantiated
    // (enclosing) type, if it exists. Otherwise the type parameter must be from
    // an enclosing function and can be ignored.
    // The nest list describes the stack (the "nest in memory") of types which
    // contain (or embed in the case of interfaces) other types. For instance, a
    // struct named S which contains a field of named type F contains (the memory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/runtime/signal_unix.go

    // alternate signal stack. If the alternate signal stack is not set
    // for the thread (the normal case) then set the alternate signal
    // stack to the gsignal stack. If the alternate signal stack is set
    // for the thread (the case when a non-Go thread sets the alternate
    // signal stack and then calls a Go function) then set the gsignal
    // stack to the alternate signal stack. We also set the alternate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. src/runtime/tracestack.go

    // license that can be found in the LICENSE file.
    
    // Trace stack table and acquisition.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    const (
    	// Maximum number of PCs in a single stack trace.
    	// Since events contain only stack id rather than whole stack trace,
    	// we can allow quite large values here.
    	traceStackSize = 128
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/runtime/preempt.go

    // stack.
    //
    // Synchronous safe-points are implemented by overloading the stack
    // bound check in function prologues. To preempt a goroutine at the
    // next synchronous safe-point, the runtime poisons the goroutine's
    // stack bound to a value that will cause the next stack bound check
    // to fail and enter the stack growth implementation, which will
    // detect that it was actually a preemption and redirect to preemption
    // handling.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/net/http/httputil/dump_test.go

    			// No unexpected goroutines.
    			return
    		}
    
    		// Allow goroutines to schedule and die off.
    		runtime.Gosched()
    	}
    
    	buf := make([]byte, 4096)
    	buf = buf[:runtime.Stack(buf, true)]
    	t.Errorf("Unexpectedly large number of new goroutines: %d new: %s", dg, buf)
    }
    
    // deadline returns the time which is needed before t.Deadline()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:34:07 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. src/runtime/os_darwin.go

    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    
    	// The caller passes in a suggested stack size,
    	// from when we allocated the stack and thread ourselves,
    	// without libpthread. Now that we're using libpthread,
    	// we use the OS default stack size instead of the suggestion.
    	// Find out that stack size for our own stack guard.
    	if pthread_attr_getstacksize(&attr, &stacksize) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/net/http/cgi/host_test.go

    // [Handler.ServeHTTP].
    func handlerRunning() bool {
    	r := regexp.MustCompile(`net/http/cgi\.\(\*Handler\)\.ServeHTTP`)
    	buf := make([]byte, 64<<10)
    	for {
    		n := runtime.Stack(buf, true)
    		if n < len(buf) {
    			return r.Match(buf[:n])
    		}
    		// Buffer wasn't large enough for a full goroutine dump.
    		// Resize it and try again.
    		buf = make([]byte, 2*len(buf))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/internal/trace/trace_test.go

    			if !overflowed {
    				t.Fail()
    			}
    		}
    
    		for stack, traceSamples := range traceStacks {
    			pprofSamples := pprofStacks[stack]
    			delete(pprofStacks, stack)
    			if traceSamples < pprofSamples {
    				t.Logf("execution trace did not include all CPU profile samples for stack %q; %d in profile, %d in trace",
    					stack, pprofSamples, traceSamples)
    				if !overflowed {
    					t.Fail()
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top