Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 251 for aframe (0.15 sec)

  1. src/cmd/go/internal/work/security_test.go

    	{"-O2"},
    	{"-Osmall"},
    	{"-W"},
    	{"-Wall"},
    	{"-Wp,-Dfoo=bar"},
    	{"-Wp,-Ufoo"},
    	{"-Wp,-Dfoo1"},
    	{"-Wp,-Ufoo1"},
    	{"-flto"},
    	{"-fobjc-arc"},
    	{"-fno-objc-arc"},
    	{"-fomit-frame-pointer"},
    	{"-fno-omit-frame-pointer"},
    	{"-fpic"},
    	{"-fno-pic"},
    	{"-fPIC"},
    	{"-fno-PIC"},
    	{"-fpie"},
    	{"-fno-pie"},
    	{"-fPIE"},
    	{"-fno-PIE"},
    	{"-fsplit-stack"},
    	{"-fno-split-stack"},
    	{"-fstack-xxx"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTaskTest.groovy

            when:
            processTask.call()
    
            then:
            def e = thrown(Throwable)
            def root = Throwables.getRootCause(e)
            root.message == errorMsg
            root.stackTrace.any { frame -> frame.className == throwingClass }
            !Throwables.getCausalChain(e).any { c -> c.class == InvocationTargetException.class }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/seh.go

    			break
    		}
    		if p.Pos.Xlogue() == src.PosPrologueEnd {
    			break
    		}
    	}
    	if pushbp == nil {
    		ctxt.Diag("missing frame pointer instruction: PUSHQ BP")
    		return
    	}
    
    	// It must be followed by a MOVQ SP, BP.
    	movbp := pushbp.Link
    	if movbp == nil {
    		ctxt.Diag("missing frame pointer instruction: MOVQ SP, BP")
    		return
    	}
    	if !(movbp.As == AMOVQ && movbp.From.Type == obj.TYPE_REG && movbp.From.Reg == REG_SP &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_nm.go

    			name:    fields[0],
    			symType: fields[1],
    		})
    	}
    
    	return a, nil
    }
    
    // addrInfo returns the stack frame information for a specific program
    // address. It returns nil if the address could not be identified.
    func (a *addr2LinerNM) addrInfo(addr uint64) ([]plugin.Frame, error) {
    	if len(a.m) == 0 || addr < a.m[0].address || addr >= (a.m[len(a.m)-1].address+a.m[len(a.m)-1].size) {
    		return nil, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4K bytes
    - Viewed (0)
  5. src/runtime/pprof/runtime.go

    	"runtime"
    	"unsafe"
    )
    
    // runtime_FrameStartLine is defined in runtime/symtab.go.
    //
    //go:noescape
    func runtime_FrameStartLine(f *runtime.Frame) int
    
    // runtime_FrameSymbolName is defined in runtime/symtab.go.
    //
    //go:noescape
    func runtime_FrameSymbolName(f *runtime.Frame) string
    
    // runtime_expandFinalInlineFrame is defined in runtime/symtab.go.
    func runtime_expandFinalInlineFrame(stk []uintptr) []uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsPerformanceIntegrationTest.groovy

    class GradleImplDepsPerformanceIntegrationTest extends BaseGradleImplDepsIntegrationTest {
    
        @ToBeFixedForConfigurationCache(skip = ToBeFixedForConfigurationCache.Skip.FLAKY)
        def "Gradle API JAR is generated in an acceptable time frame"() {
            buildFile << """
                configurations {
                    deps
                }
    
                dependencies {
                    deps gradleApi()
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. test/retjmp.dir/a.s

    TEXT	·f(SB), 4, $8-0
    	CALL	·f1(SB)
    	RET	·f2(SB)
    	CALL	·unreachable(SB)
    
    TEXT	·leaf(SB), 4, $0-0
    	RET	·f3(SB)
    	JMP	·unreachable(SB)
    
    TEXT	·leaf2(SB), 4, $32-0 // nonzero frame size
    	RET	·f4(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 22:42:08 UTC 2021
    - 385 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_stack_v1.0.0.txt

    Module with a function that prints file name for the top stack frame.
    Different versions of this module are identical, but they should return
    different file names with -trimpath.
    -- .mod --
    module example.com/stack
    
    go 1.14
    -- .info --
    {"Version":"v1.0.0"}
    -- stack.go --
    package stack
    
    import "runtime"
    
    func TopFile() string {
    	_, file, _, _ := runtime.Caller(0)
    	return file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 14 22:55:12 UTC 2019
    - 380 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_stack_v1.0.1.txt

    Module with a function that prints file name for the top stack frame.
    Different versions of this module are identical, but they should return
    different file names with -trimpath.
    -- .mod --
    module example.com/stack
    
    go 1.14
    -- .info --
    {"Version":"v1.0.1"}
    -- stack.go --
    package stack
    
    import "runtime"
    
    func TopFile() string {
    	_, file, _, _ := runtime.Caller(0)
    	return file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 14 22:55:12 UTC 2019
    - 380 bytes
    - Viewed (0)
  10. test/fixedbugs/issue22200.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func f1(x *[1<<30 - 1e6]byte) byte {
    	for _, b := range *x {
    		return b
    	}
    	return 0
    }
    func f2(x *[1<<30 + 1e6]byte) byte { // GC_ERROR "stack frame too large"
    	for _, b := range *x {
    		return b
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 14 17:37:52 UTC 2020
    - 396 bytes
    - Viewed (0)
Back to top