Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for Atack (0.03 sec)

  1. src/go/ast/commentmap.go

    		r.end = r.fset.Position(r.comment.End())
    		r.index++
    	}
    }
    
    // A nodeStack keeps track of nested nodes.
    // A node lower on the stack lexically contains the nodes higher on the stack.
    type nodeStack []Node
    
    // push pops all nodes that appear lexically before n
    // and then pushes n on the stack.
    func (s *nodeStack) push(n Node) {
    	s.pop(n.Pos())
    	*s = append((*s), n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/runtime/tracebuf.go

    		}
    		v >>= 7
    		pos++
    	}
    	if v != 0 {
    		throw("v could not fit in traceBytesPerNumber")
    	}
    }
    
    // traceBufFlush flushes a trace buffer.
    //
    // Must run on the system stack because trace.lock must be held.
    //
    //go:systemstack
    func traceBufFlush(buf *traceBuf, gen uintptr) {
    	assertLockHeld(&trace.lock)
    
    	// Write out the non-header length of the batch in the header.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/runtime/pprof/protomem_test.go

    	rec := []profilerecord.MemProfileRecord{
    		{AllocBytes: 4096, FreeBytes: 1024, AllocObjects: 4, FreeObjects: 1, Stack: []uintptr{a1, a2}},
    		{AllocBytes: 512 * 1024, FreeBytes: 0, AllocObjects: 1, FreeObjects: 0, Stack: []uintptr{a2 + 1, a2 + 2}},
    		{AllocBytes: 512 * 1024, FreeBytes: 512 * 1024, AllocObjects: 1, FreeObjects: 1, Stack: []uintptr{a1 + 1, a1 + 2, a2 + 3}},
    	}
    
    	periodType := &profile.ValueType{Type: "space", Unit: "bytes"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/net/ipsock_posix.go

    //     "udp", with a wildcard address: If the platform supports
    //     both IPv6 and IPv4-mapped IPv6 communication capabilities,
    //     or does not support IPv4, we use a dual stack, AF_INET6 and
    //     IPV6_V6ONLY=0, wildcard address listen. The dual stack
    //     wildcard address listen may fall back to an IPv6-only,
    //     AF_INET6 and IPV6_V6ONLY=1, wildcard address listen.
    //     Otherwise we prefer an IPv4-only, AF_INET, wildcard address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. src/runtime/defs_darwin_arm64.go

    	exc uint32 // number of arm exception taken
    }
    
    type regs64 struct {
    	x     [29]uint64 // registers x0 to x28
    	fp    uint64     // frame register, x29
    	lr    uint64     // link register, x30
    	sp    uint64     // stack pointer, x31
    	pc    uint64     // program counter
    	cpsr  uint32     // current program status register
    	__pad uint32
    }
    
    type neonstate64 struct {
    	v    [64]uint64 // actually [32]uint128
    	fpsr uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/internal/telemetry/telemetry.go

    func Inc(name string) {
    	counter.Inc(name)
    }
    
    // NewCounter returns a counter with the given name.
    func NewCounter(name string) *counter.Counter {
    	return counter.New(name)
    }
    
    // NewStackCounter returns a new stack counter with the given name and depth.
    func NewStackCounter(name string, depth int) *counter.StackCounter {
    	return counter.NewStack(name, depth)
    }
    
    // CountFlags creates a counter for every flag that is set
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/runtime/symtabinl.go

    	parentPc  int32 // position of an instruction whose source position is the call site (offset from entry)
    	startLine int32 // line number of start of function (func keyword/TEXT directive)
    }
    
    // An inlineUnwinder iterates over the stack of inlined calls at a PC by
    // decoding the inline table. The last step of iteration is always the frame of
    // the physical function, so there's always at least one frame.
    //
    // This is typically used as:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/runtime/export_debug_test.go

    			case "call not at safe point":
    				if returnOnUnsafePoint {
    					// This is for TestDebugCallUnsafePoint.
    					return nil, h.err
    				}
    				fallthrough
    			case "retry _Grunnable", "executing on Go runtime stack", "call from within the Go runtime":
    				// These are transient states. Try to get out of them.
    				if i < 100 {
    					usleep(100)
    					Gosched()
    					continue
    				}
    			}
    			return nil, h.err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/path/filepath/match.go

    func Glob(pattern string) (matches []string, err error) {
    	return globWithLimit(pattern, 0)
    }
    
    func globWithLimit(pattern string, depth int) (matches []string, err error) {
    	// This limit is used prevent stack exhaustion issues. See CVE-2022-30632.
    	const pathSeparatorsLimit = 10000
    	if depth == pathSeparatorsLimit {
    		return nil, ErrBadPattern
    	}
    
    	// Check pattern is well-formed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. src/sync/pool_test.go

    		}
    		if drain {
    			for i := 0; i < N; i++ {
    				p.Get()
    			}
    		}
    		for i := 0; i < 5; i++ {
    			runtime.GC()
    			time.Sleep(time.Duration(i*100+10) * time.Millisecond)
    			// 1 pointer can remain on stack or elsewhere
    			if fin1 = atomic.LoadUint32(&fin); fin1 >= N-1 {
    				continue loop
    			}
    		}
    		t.Fatalf("only %v out of %v resources are finalized on try %v", fin1, N, try)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top