Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 260 for frame_0 (0.2 sec)

  1. src/runtime/asm_386.s

    	MOVL	CX, SP
    	MOVL	AX, ret+8(FP)
    	RET
    
    // cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
    // See cgocall.go for more details.
    TEXT ·cgocallback(SB),NOSPLIT,$12-12  // Frame size must match commented places below
    	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.
    	MOVL	fn+0(FP), AX
    	CMPL	AX, $0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. 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)
  3. src/runtime/cpuprof.go

    	// Hopefully a normal Go thread will get the profiling
    	// signal at least once every few seconds.
    	extra      [1000]uintptr
    	numExtra   int
    	lostExtra  uint64 // count of frames lost because extra is full
    	lostAtomic uint64 // count of frames lost because of being in atomic64 on mips/arm; updated racily
    }
    
    var cpuprof cpuProfile
    
    // SetCPUProfileRate sets the CPU profiling rate to hz samples per second.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. 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)
  5. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

        final List<Integer> completeLengthChecks;
        final int baseStackDepth;
        ExecutorService service = Executors.newFixedThreadPool(5);
        try {
          // Avoid counting frames from the executor itself, or the ExecutionSequencer
          baseStackDepth =
              serializer
                  .submit(
                      new Callable<Integer>() {
                        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

        final List<Integer> completeLengthChecks;
        final int baseStackDepth;
        ExecutorService service = Executors.newFixedThreadPool(5);
        try {
          // Avoid counting frames from the executor itself, or the ExecutionSequencer
          baseStackDepth =
              serializer
                  .submit(
                      new Callable<Integer>() {
                        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. 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)
  8. mockwebserver/src/main/kotlin/mockwebserver3/Stream.kt

     * limitations under the License.
     */
    package mockwebserver3
    
    import okhttp3.ExperimentalOkHttpApi
    import okio.BufferedSink
    import okio.BufferedSource
    
    /**
     * A bidirectional sequence of data frames exchanged between client and server.
     */
    @ExperimentalOkHttpApi
    interface Stream {
      val requestBody: BufferedSource
      val responseBody: BufferedSink
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/reflect/value.go

    func valueMethodName() string {
    	var pc [5]uintptr
    	n := runtime.Callers(1, pc[:])
    	frames := runtime.CallersFrames(pc[:n])
    	var frame runtime.Frame
    	for more := true; more; {
    		const prefix = "reflect.Value."
    		frame, more = frames.Next()
    		name := frame.Function
    		if len(name) > len(prefix) && name[:len(prefix)] == prefix {
    			methodName := name[len(prefix):]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. src/go/constant/example_test.go

    	//
    	// false
    	// -2.7
    	// 65493
    }
    
    func ExampleCompare() {
    	vs := []constant.Value{
    		constant.MakeString("Z"),
    		constant.MakeString("bacon"),
    		constant.MakeString("go"),
    		constant.MakeString("Frame"),
    		constant.MakeString("defer"),
    		constant.MakeFromLiteral(`"a"`, token.STRING, 0),
    	}
    
    	slices.SortFunc(vs, func(a, b constant.Value) int {
    		if constant.Compare(a, token.LSS, b) {
    			return -1
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top