Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 269 for Atack (0.05 sec)

  1. src/cmd/internal/obj/util.go

    func (p *Prog) InnermostFilename() string {
    	// TODO For now, this is only used for debugging output, and if we need more/better information, it might change.
    	// An example of what we might want to see is the full stack of positions for inlined code, so we get some visibility into what is recorded there.
    	pos := p.Ctxt.InnermostPos(p.Pos)
    	if !pos.IsKnown() {
    		return "<unknown file name>"
    	}
    	return pos.Filename()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/syscall/js/js.go

    	// in particular, note that WebGL2's texImage2D takes up to 10 arguments
    	const maxStackArgs = 16
    	if size <= maxStackArgs {
    		// as long as makeArgs is inlined, these will be stack-allocated
    		argVals = make([]Value, size, maxStackArgs)
    		argRefs = make([]ref, size, maxStackArgs)
    	} else {
    		// allocates on the heap, but exceeding maxStackArgs should be rare
    		argVals = make([]Value, size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. test/nosplit.go

    f7 16 nosplit call f8
    f8 16 nosplit call end
    end 1000
    REJECT
    
    # Two paths both go over the stack limit.
    start 0 call f1
    f1 80 nosplit call f2 call f3
    f2 40 nosplit call f4
    f3 96 nosplit
    f4 40 nosplit
    REJECT
    
    # Test cases near the 128-byte limit.
    
    # Ordinary stack split frame is always okay.
    start 112
    start 116
    start 120
    start 124
    start 128
    start 132
    start 136
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/func.go

    	if base.Debug.Closure > 0 {
    		if clo.Esc() == EscHeap {
    			base.WarnfAt(clo.Pos(), "heap closure, captured vars = %v", clo.Func.ClosureVars)
    		} else {
    			base.WarnfAt(clo.Pos(), "stack closure, captured vars = %v", clo.Func.ClosureVars)
    		}
    	}
    	if base.Flag.CompilingRuntime && clo.Esc() == EscHeap && !clo.IsGoWrap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/compress/gzip/gunzip_test.go

    	z, err := NewReader(r)
    	if err != nil {
    		t.Fatalf("NewReader: got %v, want nil", err)
    	}
    	// Prior to CVE-2022-30631 fix, this would cause an unrecoverable panic due
    	// to stack exhaustion.
    	_, err = z.Read(make([]byte, 10))
    	if err != io.EOF {
    		t.Errorf("Reader.Read: got %v, want %v", err, io.EOF)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  6. src/compress/flate/deflate.go

    		if d.hashOffset > maxHashOffset {
    			delta := d.hashOffset - 1
    			d.hashOffset -= delta
    			d.chainHead -= delta
    
    			// Iterate over slices instead of arrays to avoid copying
    			// the entire table onto the stack (Issue #18625).
    			for i, v := range d.hashPrev[:] {
    				if int(v) > delta {
    					d.hashPrev[i] = uint32(int(v) - delta)
    				} else {
    					d.hashPrev[i] = 0
    				}
    			}
    			for i, v := range d.hashHead[:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. src/runtime/metrics.go

    		},
    		"/gc/pauses:seconds": {
    			compute: func(_ *statAggregate, out *metricValue) {
    				// N.B. this is identical to /sched/pauses/total/gc:seconds.
    				sched.stwTotalTimeGC.write(out)
    			},
    		},
    		"/gc/stack/starting-size:bytes": {
    			compute: func(in *statAggregate, out *metricValue) {
    				out.kind = metricKindUint64
    				out.scalar = uint64(startingStackSize)
    			},
    		},
    		"/memory/classes/heap/free:bytes": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_GETSID               = 286 // { pid_t|sys||getsid(pid_t pid); }
    	SYS___CLONE              = 287 // { pid_t|sys||__clone(int flags, void *stack); }
    	SYS_FKTRACE              = 288 // { int|sys||fktrace(int fd, int ops, int facs, pid_t pid); }
    	SYS_PREADV               = 289 // { ssize_t|sys||preadv(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_netbsd_arm.go

    	SYS_GETSID               = 286 // { pid_t|sys||getsid(pid_t pid); }
    	SYS___CLONE              = 287 // { pid_t|sys||__clone(int flags, void *stack); }
    	SYS_FKTRACE              = 288 // { int|sys||fktrace(int fd, int ops, int facs, pid_t pid); }
    	SYS_PREADV               = 289 // { ssize_t|sys||preadv(int fd, const struct iovec *iovp, int iovcnt, int PAD, off_t offset); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  10. src/net/http/clientserver_test.go

    		}
    		if gotLog == "" {
    			if d > 0 {
    				t.Logf("wanted a stack trace logged; got nothing after %v", d)
    			}
    			return false
    		}
    		if !strings.Contains(gotLog, "created by ") && strings.Count(gotLog, "\n") < 6 {
    			if d > 0 {
    				t.Logf("output doesn't look like a panic stack trace after %v. Got: %s", d, gotLog)
    			}
    			return false
    		}
    		return true
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
Back to top