Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 525 for Atack (0.04 sec)

  1. src/log/slog/value.go

    			rv = AnyValue(fmt.Errorf("LogValue panicked\n%s", stack(3, 5)))
    		}
    	}()
    
    	for i := 0; i < maxLogValues; i++ {
    		if v.Kind() != KindLogValuer {
    			return v
    		}
    		v = v.LogValuer().LogValue()
    	}
    	err := fmt.Errorf("LogValue called too many times on Value of type %T", orig.Any())
    	return AnyValue(err)
    }
    
    func stack(skip, nFrames int) string {
    	pcs := make([]uintptr, nFrames+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/writebarrier.go

    	if !ok {
    		v.Fatalf("store aux is not a type: %s", v.LongString())
    	}
    	if !t.HasPointers() {
    		return false
    	}
    	dst := v.Args[0]
    	if IsStackAddr(dst) {
    		return false // writes into the stack don't need write barrier
    	}
    	// If we're writing to a place that might have heap pointers, we need
    	// the write barrier.
    	if mightContainHeapPointer(dst, t.Size(), v.MemoryArg(), zeroes) {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. pkg/proxy/serviceport.go

    	if !exists {
    		info.hintsAnnotation = service.Annotations[v1.AnnotationTopologyMode]
    	}
    
    	// filter external ips, source ranges and ingress ips
    	// prior to dual stack services, this was considered an error, but with dual stack
    	// services, this is actually expected. Hence we downgraded from reporting by events
    	// to just log lines with high verbosity
    	ipFamilyMap := proxyutil.MapIPsByIPFamily(service.Spec.ExternalIPs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/pe.go

    	// calls that may need more stack than we think.
    	//
    	// The default stack reserve size directly affects only the main
    	// thread.
    	//
    	// For other threads, the runtime explicitly asks the kernel
    	// to use the default stack size so that all stacks are
    	// consistent.
    	//
    	// At thread start, in minit, the runtime queries the OS for
    	// the actual stack bounds so that the stack size doesn't need
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  5. src/cmd/trace/gstate.go

    func (gs *gState[R]) setStartCause(ts trace.Time, name string, resource uint64, stack trace.Stack) {
    	gs.startCause.time = ts
    	gs.startCause.name = name
    	gs.startCause.resource = resource
    	gs.startCause.stack = stack
    }
    
    // created indicates that this goroutine was just created by the provided creator.
    func (gs *gState[R]) created(ts trace.Time, creator R, stack trace.Stack) {
    	if creator == R(noResource) {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/runtime/mgcstack.go

    // on the stack whose address is taken, and which themselves contain a
    // pointer. We call these variables "stack objects".
    //
    // We begin by determining all the stack objects on the stack and all
    // the statically live pointers that may point into the stack. We then
    // process each pointer to see if it points to a stack object. If it
    // does, we scan that stack object. It may contain pointers into the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "PanicExtend", argLength: 4, aux: "Int64", typ: "Mem", call: true}, // arg0=idxHi, arg1=idxLo, arg2=len, arg3=mem, returns memory.
    
    	// Function calls. Arguments to the call have already been written to the stack.
    	// Return values appear on the stack. The method receiver, if any, is treated
    	// as a phantom first argument.
    	// TODO(josharian): ClosureCall and InterCall should have Int32 aux
    	// to match StaticCall's 32 bit arg size limit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/cmd/trace/pprof.go

    	stacks map[trace.Stack]*traceviewer.ProfileRecord
    
    	// pcs is the source-of-truth for deduplication. It is a map of
    	// the actual PCs in the stack to a trace.Stack.
    	pcs map[[pprofMaxStack]uint64]trace.Stack
    }
    
    func newStackMap() *stackMap {
    	return &stackMap{
    		stacks: make(map[trace.Stack]*traceviewer.ProfileRecord),
    		pcs:    make(map[[pprofMaxStack]uint64]trace.Stack),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/crypto/ed25519/ed25519.go

    // with RFC 8032. RFC 8032's private keys correspond to seeds in this
    // package.
    func NewKeyFromSeed(seed []byte) PrivateKey {
    	// Outline the function body so that the returned key can be stack-allocated.
    	privateKey := make([]byte, PrivateKeySize)
    	newKeyFromSeed(privateKey, seed)
    	return privateKey
    }
    
    func newKeyFromSeed(privateKey, seed []byte) {
    	if l := len(seed); l != SeedSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/internal/xcoff/xcoff.go

    	C_WEAKEXT = 111 // Weak external symbol
    	C_DWARF   = 112 // DWARF symbol
    	C_GSYM    = 128 // Global variable
    	C_LSYM    = 129 // Automatic variable allocated on stack
    	C_PSYM    = 130 // Argument to subroutine allocated on stack
    	C_RSYM    = 131 // Register variable
    	C_RPSYM   = 132 // Argument to function or procedure stored in register
    	C_STSYM   = 133 // Statically allocated symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top