Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for frame_0 (1.09 sec)

  1. src/cmd/compile/internal/types/type.go

    	TCHAN
    	TMAP
    	TINTER
    	TFORW
    	TANY
    	TSTRING
    	TUNSAFEPTR
    
    	// pseudo-types for literals
    	TIDEAL // untyped numeric constants
    	TNIL
    	TBLANK
    
    	// pseudo-types used temporarily only during frame layout (CalcSize())
    	TFUNCARGS
    	TCHANARGS
    
    	// SSA backend types
    	TSSA     // internal types used by SSA backend (flags, memory, etc.)
    	TTUPLE   // a pair of types, used by SSA backend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	// concurrentSweep is a debug flag. Disabling this flag
    	// ensures all spans are swept while the world is stopped.
    	concurrentSweep = true
    
    	// debugScanConservative enables debug logging for stack
    	// frames that are scanned conservatively.
    	debugScanConservative = false
    
    	// sweepMinHeapDistance is a lower bound on the heap distance
    	// (in bytes) reserved for concurrent sweeping between GC
    	// cycles.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    	"R16",
    	"R17",
    	"R18", // platform register, not used
    	"R19",
    	"R20",
    	"R21",
    	"R22",
    	"R23",
    	"R24",
    	"R25",
    	"R26",
    	// R27 = REGTMP not used in regalloc
    	"g",   // aka R28
    	"R29", // frame pointer, not used
    	"R30", // aka REGLINK
    	"SP",  // aka R31
    
    	"F0",
    	"F1",
    	"F2",
    	"F3",
    	"F4",
    	"F5",
    	"F6",
    	"F7",
    	"F8",
    	"F9",
    	"F10",
    	"F11",
    	"F12",
    	"F13",
    	"F14",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - Fixed EDITOR/KUBE_EDITOR with double-quoted paths with spaces when on Windows cmd.exe. ([#112104](https://github.com/kubernetes/kubernetes/pull/112104), [@oldium](https://github.com/oldium)) [SIG CLI and Windows]
    - Fixed a bug in the JSON frame reader that could cause it to retain a reference to the underlying array of the byte slice passed to Read. ([#123620](https://github.com/kubernetes/kubernetes/pull/123620), [@benluddy](https://github.com/benluddy)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .IDE support matrix
    [cols=">.^,^.^,^.^,^.^",frame=none,grid=rows,options="header"]
    |===
    ||Build import|Syntax highlighting ^1^|Semantic editor ^2^
    
    |IntelliJ IDEA
    |[.green]#*✓*#
    |[.green]#*✓*#
    |[.green]#*✓*#
    
    |Android Studio
    |[.green]#*✓*#
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    // that no one will actually hit in real use but at the same time small enough
    // that recursion on the Regexp tree will not hit the 1GB Go stack limit.
    // The maximum amount of stack for a single recursive frame is probably
    // closer to 1kB, so this could potentially be raised, but it seems unlikely
    // that people have regexps nested even this deeply.
    // We ran a test on Google's C++ code base and turned up only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      std::vector<int> FindAlternatePathForDebugging(int from, int to);
    
      // Returns a string representing `cycles_graph_node_id`.  If the node is
      // unclusterable (either it is a phatom "frame" node or is not a compilation
      // candidate) then set `*found_unclustered` to true.
      string DebugStringForCyclesGraphNode(int node_id, bool* found_unclustered);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    func isLeaf(f *Func) bool {
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Op.IsCall() && !v.Op.IsTailCall() {
    				// tail call is not counted as it does not save the return PC or need a frame
    				return false
    			}
    		}
    	}
    	return true
    }
    
    // needRegister reports whether v needs a register.
    func (v *Value) needRegister() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    	attrNotInSymbolTable Bitmap // "not in symtab" symbols, indexed by global idx
    	attrUsedInIface      Bitmap // "used in interface" symbols, indexed by global idx
    	attrSpecial          Bitmap // "special" frame symbols, indexed by global idx
    	attrVisibilityHidden Bitmap // hidden symbols, indexed by ext sym index
    	attrDuplicateOK      Bitmap // dupOK symbols, indexed by ext sym index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top