Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 360 for aframe (0.16 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	MOVW PSALAA, R8
    	MOVD LCA64(R8), R8
    	MOVD CAA(R8), R9
    	MOVD g, GOCB(R9)
    
    	// Restore LE stack.
    	MOVD SAVSTACK_ASYNC(R8), R9 // R9-> LE stack frame saving address
    	MOVD 0(R9), R4              // R4-> restore previously saved stack frame pointer
    
    	MOVD parms_base+8(FP), R7 // R7 -> argument array
    	MOVD parms_len+16(FP), R8 // R8 number of arguments
    
    	//  arg 1 ---> R1
    	CMP  R8, $0
    	BEQ  docall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_cluster_util.cc

            // Lift edges to an "Enter" node to the corresponding frame node.
            const string& frame_name =
                control_flow_info[edge->dst()->id()].frame_name;
            dst = GetOrAddFrameNodeId(frame_name);
            dst_type = "frame";
          }
    
          if (edge->src()->IsExit()) {
            // Lift edges from an "Exit" node to the corresponding frame node.
            const string& frame_name =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java

            Map<String, String> childUrlRuleMap = newHashMap();
            childUrlRuleMap.put("//A", "href");
            childUrlRuleMap.put("//AREA", "href");
            childUrlRuleMap.put("//FRAME", "src");
            childUrlRuleMap.put("//IFRAME", "src");
            childUrlRuleMap.put("//IMG", "src");
            childUrlRuleMap.put("//LINK", "href");
            childUrlRuleMap.put("//SCRIPT", "src");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/runtime/signal_windows.go

    	}
    	// The Windows SEH machinery will unwind the stack until it finds
    	// a frame with a handler for the exception or until the frame is
    	// outside the stack boundaries, in which case it will call the
    	// UnhandledExceptionFilter. Unfortunately, it doesn't know about
    	// the goroutine stack, so it will stop unwinding when it reaches the
    	// first frame not running in g0. As a result, neither non-Go exceptions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingDeprecatedFeatureHandler.java

            if (isTraceLoggingEnabled()) {
                // append full stack trace
                for (int i = startIndexInclusive; i < endIndex; ++i) {
                    StackTraceElement frame = stack.get(i);
                    appendStackTraceElement(frame, message, lineSeparator);
                }
            } else {
                for (int i = startIndexInclusive; i < endIndex; ++i) {
                    StackTraceElement element = stack.get(i);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. src/runtime/asm_arm64.s

    	RET
    
    // cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
    // See cgocall.go for more details.
    TEXT ·cgocallback(SB),NOSPLIT,$24-24
    	NO_LOCAL_POINTERS
    
    	// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
    	// It is used to dropm while thread is exiting.
    	MOVD	fn+0(FP), R1
    	CBNZ	R1, loadg
    	// Restore the g from frame.
    	MOVD	frame+8(FP), g
    	B	dropm
    
    loadg:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. src/runtime/extern.go

    	if n < 1 {
    		return
    	}
    	frame, _ := CallersFrames(rpc).Next()
    	return frame.PC, frame.File, frame.Line, frame.PC != 0
    }
    
    // Callers fills the slice pc with the return program counters of function invocations
    // on the calling goroutine's stack. The argument skip is the number of stack frames
    // to skip before recording in pc, with 0 identifying the frame for Callers itself and
    // 1 identifying the caller of Callers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/DecoratedPropertyProblem.kt

                    return element
                }
            }
    
            return null
        }
    
        private
        fun exceptionSummaryFrom(frame: StackTraceElement) = StructuredMessage.build {
            text("at ")
            reference(frame.toString())
        }
    
        private
        class PartitioningFailurePrinterListener(
            private val buffer: StringBuilder
        ) : FailurePrinterListener {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top