Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for iframe (0.12 sec)

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

    	case TCHAN,
    		TMAP,
    		TFUNC,
    		TUNSAFEPTR:
    		return true
    
    	case TARRAY:
    		// Array of 1 direct iface type can be direct.
    		return t.NumElem() == 1 && IsDirectIface(t.Elem())
    
    	case TSTRUCT:
    		// Struct with 1 field of direct iface type can be direct.
    		return t.NumFields() == 1 && IsDirectIface(t.Field(0).Type)
    	}
    
    	return false
    }
    
    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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // This flag controls whether Google Test includes Google Test internal
    // stack frames in failure stack traces.
    GTEST_DECLARE_bool_(show_internal_stack_frames);
    
    // When this flag is specified, tests' order is randomized on every iteration.
    GTEST_DECLARE_bool_(shuffle);
    
    // This flag specifies the maximum number of stack frames to be
    // printed in a failure message.
    GTEST_DECLARE_int32_(stack_trace_depth);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // This flag controls whether Google Test includes Google Test internal
    // stack frames in failure stack traces.
    GTEST_DECLARE_bool_(show_internal_stack_frames);
    
    // When this flag is specified, tests' order is randomized on every iteration.
    GTEST_DECLARE_bool_(shuffle);
    
    // This flag specifies the maximum number of stack frames to be
    // printed in a failure message.
    GTEST_DECLARE_int32_(stack_trace_depth);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. src/runtime/mheap.go

    	reclaimCredit atomic.Uintptr
    
    	_ cpu.CacheLinePad // prevents false-sharing between arenas and preceding variables
    
    	// arenas is the heap arena map. It points to the metadata for
    	// the heap for every arena frame of the entire usable virtual
    	// address space.
    	//
    	// Use arenaIndex to compute indexes into this array.
    	//
    	// For regions of the address space that are not backed by the
    	// Go heap, the arena map contains nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. 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)
Back to top