Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/runtime/gc_test.go

    	// further move the stack.
    	new2 := uintptr(unsafe.Pointer(new))
    
    	t.Logf("old stack pointer %x, new stack pointer %x", old, new2)
    	if new2 == old {
    		// Check that we didn't screw up the test's escape analysis.
    		if cls := runtime.GCTestPointerClass(unsafe.Pointer(new)); cls != "stack" {
    			t.Fatalf("test bug: new (%#x) should be a stack pointer, not %s", new2, cls)
    		}
    		// This was a real failure.
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/runtime/chan.go

    	// There are unlocked sudogs that point into gp's stack. Stack
    	// copying must lock the channels of those sudogs.
    	// Set activeStackChans here instead of before we try parking
    	// because we could self-deadlock in stack growth on the
    	// channel lock.
    	gp.activeStackChans = true
    	// Mark that it's safe for stack shrinking to occur now,
    	// because any thread acquiring this G's stack for shrinking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    			}
    		}
    	}
    	return replaced
    }
    
    type ordermarker int
    
    // markTemp returns the top of the temporary variable stack.
    func (o *orderState) markTemp() ordermarker {
    	return ordermarker(len(o.temp))
    }
    
    // popTemp pops temporaries off the stack until reaching the mark,
    // which must have been returned by markTemp.
    func (o *orderState) popTemp(mark ordermarker) {
    	for _, n := range o.temp[mark:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    		//   panicking with ErrAbortHandler also suppresses logging of a stack trace to the server's error log.
    		return
    	}
    
    	// Same as stdlib http server code. Manually allocate stack trace buffer size
    	// to prevent excessively large logs
    	const size = 64 << 10
    	stacktrace := make([]byte, size)
    	stacktrace = stacktrace[:runtime.Stack(stacktrace, false)]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/op.go

    // package (assembler).
    func ObjRegForAbiReg(r abi.RegIndex, c *Config) int16 {
    	m := archRegForAbiReg(r, c)
    	return c.registers[m].objNum
    }
    
    // ArgWidth returns the amount of stack needed for all the inputs
    // and outputs of a function or method, including ABI-defined parameter
    // slots and ABI-defined spill slots for register-resident parameters.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. src/runtime/debuglog.go

    // finish the message.
    //
    // dlog can be used from highly-constrained corners of the runtime: it
    // is safe to use in the signal handler, from within the write
    // barrier, from within the stack implementation, and in places that
    // must be recursively nosplit.
    //
    // This will be compiled away if built without the debuglog build tag.
    // However, argument construction may not be. If any of the arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_OP_consts              = 0x11 // 1 SLEB128 constant
    	DW_OP_dup                 = 0x12 // 0
    	DW_OP_drop                = 0x13 // 0
    	DW_OP_over                = 0x14 // 0
    	DW_OP_pick                = 0x15 // 1 1-byte stack index
    	DW_OP_swap                = 0x16 // 0
    	DW_OP_rot                 = 0x17 // 0
    	DW_OP_xderef              = 0x18 // 0
    	DW_OP_abs                 = 0x19 // 0
    	DW_OP_and                 = 0x1a // 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  8. cmd/utils_test.go

    // Copyright (c) 2015-2021 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/internal/trace/internal/oldtrace/parser.go

    	EvGoSleep           event.Type = 19 // goroutine calls Sleep [timestamp, stack]
    	EvGoBlock           event.Type = 20 // goroutine blocks [timestamp, stack]
    	EvGoUnblock         event.Type = 21 // goroutine is unblocked [timestamp, goroutine id, seq, stack]
    	EvGoBlockSend       event.Type = 22 // goroutine blocks on chan send [timestamp, stack]
    	EvGoBlockRecv       event.Type = 23 // goroutine blocks on chan recv [timestamp, stack]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	SampleIndex         string  `json:"-"`
    	DivideBy            float64 `json:"-"`
    	Normalize           bool    `json:"normalize,omitempty"`
    	Sort                string  `json:"sort,omitempty"`
    
    	// Label pseudo stack frame generation options
    	TagRoot string `json:"tagroot,omitempty"`
    	TagLeaf string `json:"tagleaf,omitempty"`
    
    	// Filtering options
    	DropNegative bool    `json:"drop_negative,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top