Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 212 for Atack (0.09 sec)

  1. src/cmd/go/internal/work/gccgo.go

    		//
    		// The user remains responsible for linking against
    		// -lgo -lpthread -lm in the final link. We can't use
    		// -r to pick them up because we can't combine
    		// split-stack and non-split-stack code in a single -r
    		// link, and libgo picks up non-split-stack code from
    		// libffi.
    		ldflags = append(ldflags, "-Wl,-r", "-nostdlib")
    		ldflags = append(ldflags, goLibBegin...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/os/signal/doc.go

    program to simply exit by pressing ^C, and you can cause it to exit
    with a stack dump by pressing ^\.
    
    # Default behavior of signals in Go programs
    
    By default, a synchronous signal is converted into a run-time panic. A
    SIGHUP, SIGINT, or SIGTERM signal causes the program to exit. A
    SIGQUIT, SIGILL, SIGTRAP, SIGABRT, SIGSTKFLT, SIGEMT, or SIGSYS signal
    causes the program to exit with a stack dump. A SIGTSTP, SIGTTIN, or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    // whether the span has been zeroed. Note that it may not be.
    func (h *mheap) alloc(npages uintptr, spanclass spanClass) *mspan {
    	// Don't do any operations that lock the heap on the G stack.
    	// It might trigger stack growth, and the stack growth code needs
    	// to be able to allocate heap.
    	var s *mspan
    	systemstack(func() {
    		// To prevent excessive heap growth, before allocating n pages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/buildid.go

    		secType := "@progbits"
    		if cfg.Goarch == "arm" {
    			secType = "%progbits"
    		}
    		fmt.Fprintf(&buf, "\t"+`.section .note.GNU-stack,"",%s`+"\n", secType)
    		fmt.Fprintf(&buf, "\t"+`.section .note.GNU-split-stack,"",%s`+"\n", secType)
    	}
    
    	if err := b.Shell(a).writeFile(sfile, buf.Bytes()); err != nil {
    		return "", err
    	}
    
    	return sfile, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/go/types/unify.go

    			// endless recursion occurs if the cycle is not detected.
    			//
    			// If x and y were compared before, they must be equal
    			// (if they were not, the recursion would have stopped);
    			// search the ifacePair stack for the same pair.
    			//
    			// This is a quadratic algorithm, but in practice these stacks
    			// are extremely short (bounded by the nesting depth of interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. src/encoding/json/encode.go

    type encodeState struct {
    	bytes.Buffer // accumulated output
    
    	// Keep track of what pointers we've seen in the current recursive call
    	// path, to avoid cycles that could lead to a stack overflow. Only do
    	// the relatively expensive map operations if ptrLevel is larger than
    	// startDetectingCyclesAfter, so that we skip the work if we're within a
    	// reasonable amount of nested pointers deep.
    	ptrLevel uint
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. 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)
  8. src/database/sql/sql.go

    			fmt.Printf("putConn(%v) DUPLICATE was: %s\n\nPREVIOUS was: %s", dc, stack(), db.lastPut[dc])
    		}
    		panic("sql: connection returned that was never out")
    	}
    
    	if !errors.Is(err, driver.ErrBadConn) && dc.expired(db.maxLifetime) {
    		db.maxLifetimeClosed++
    		err = driver.ErrBadConn
    	}
    	if debugGetPut {
    		db.lastPut[dc] = stack()
    	}
    	dc.inUse = false
    	dc.returnedAt = nowFunc()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. 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)
  10. src/go/types/check.go

    	methods  map[*TypeName][]*Func // maps package scope type names to associated non-blank (non-interface) methods
    	untyped  map[ast.Expr]exprInfo // map of expressions without final type
    	delayed  []action              // stack of delayed action segments; segments are processed in FIFO order
    	objPath  []Object              // path of object dependencies during type inference (for cycle reporting)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top