Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/net/http/transport.go

    	// (They may be actively dialing, but this conn is ready first.
    	// Chrome calls this socket late binding.
    	// See https://www.chromium.org/developers/design-documents/network-stack#TOC-Connection-Management.)
    	key := pconn.cacheKey
    	if q, ok := t.idleConnWait[key]; ok {
    		done := false
    		if pconn.alt == nil {
    			// HTTP/1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			// anyone allocate one on the Go side. As a side effect of this annotation,
    			// pointers to this type will not be considered pointers in Go. They won't
    			// get writebarrier-ed or adjusted during a stack copy. This should handle
    			// all the cases badPointerTypedef used to handle, but hopefully will
    			// continue to work going forward without any more need for cgo changes.
    			tt.Go = c.Ident(incomplete)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    // the merge happens in a stack location (a "stack" phi).
    //
    // A register phi must have the phi and all of its inputs allocated to the
    // same register. Register phis are spilled similarly to regular ops.
    //
    // A stack phi must have the phi and all of its inputs allocated to the same
    // stack location. Stack phis start out life already spilled - each phi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    		// on another stack. That could confuse callers quite a bit.
    		// Instead, we require that initAt and any other function that
    		// accepts an sp for the current goroutine (typically obtained by
    		// calling getcallersp) must not run on that goroutine's stack but
    		// instead on the g0 stack.
    		throw("cannot trace user goroutine on its own stack")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    					stk = s
    					break
    				}
    			}
    			if len(stk) != depth {
    				t.Fatalf("want stack depth = %d, got %d", depth, len(stk))
    			}
    
    			if rootFn, wantFn := stk[depth-1], "runtime/pprof.produceProfileEvents"; rootFn != wantFn {
    				t.Fatalf("want stack stack root %s, got %v", wantFn, rootFn)
    			}
    		})
    	}
    }
    
    func hasPrefix(stk []string, prefix []string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    		if ctxt.IsMIPS() {
    			shstrtabAddstring(elfRelType + ".MIPS.abiflags")
    			shstrtabAddstring(elfRelType + ".gnu.attributes")
    		}
    
    		// add a .note.GNU-stack section to mark the stack as non-executable
    		shstrtabAddstring(".note.GNU-stack")
    
    		if ctxt.IsShared() {
    			shstrtabAddstring(".note.go.abihash")
    			shstrtabAddstring(".note.go.pkg-list")
    			shstrtabAddstring(".note.go.deps")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/xcoff.go

    	Odatapsize  uint8    // Requested data page size
    	Ostackpsize uint8    // Requested stack page size
    	Oflags      uint8    // Flags And TLS Alignment
    	Otsize      uint64   // Text Size In Bytes
    	Odsize      uint64   // Data Size In Bytes
    	Obsize      uint64   // Bss Size In Bytes
    	Oentry      uint64   // Entry Point Address
    	Omaxstack   uint64   // Max Stack Size Allowed
    	Omaxdata    uint64   // Max Data Size Allowed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/compile/internal/ssa/prove.go

    // Called when backing up on a branch.
    func (ft *factsTable) restore() {
    	if ft.unsatDepth > 0 {
    		ft.unsatDepth--
    	} else {
    		ft.unsat = false
    	}
    	for {
    		old := ft.stack[len(ft.stack)-1]
    		ft.stack = ft.stack[:len(ft.stack)-1]
    		if old == checkpointFact {
    			break
    		}
    		if old.r == lt|eq|gt {
    			delete(ft.facts, old.p)
    		} else {
    			ft.facts[old.p] = old.r
    		}
    	}
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/syscall/zerrors_linux_riscv64.go

    	9:  "killed",
    	10: "user defined signal 1",
    	11: "segmentation fault",
    	12: "user defined signal 2",
    	13: "broken pipe",
    	14: "alarm clock",
    	15: "terminated",
    	16: "stack fault",
    	17: "child exited",
    	18: "continued",
    	19: "stopped (signal)",
    	20: "stopped",
    	21: "stopped (tty input)",
    	22: "stopped (tty output)",
    	23: "urgent I/O condition",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 70.8K bytes
    - Viewed (0)
Back to top