Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 142 for frame_0 (0.38 sec)

  1. src/runtime/cgo/asm_ppc64x.s

    // fn is the PC of a func(a unsafe.Pointer) function.
    // The value of R2 is saved on the new stack frame, and not
    // the caller's frame due to issue #43228.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	// Start with standard C stack frame layout and linkage, allocate
    	// 32 bytes of argument space, save callee-save regs, and set R0 to $0.
    	STACK_AND_SAVE_HOST_TO_GO_ABI(32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/reflect/makefunc.go

    // the function returned from MakeFunc. It expects a *callReflectFunc
    // as its context register, and its job is to invoke callReflect(ctxt, frame)
    // where ctxt is the context register and frame is a pointer to the first
    // word in the passed-in argument frame.
    func makeFuncStub()
    
    // The first 3 words of this type must be kept in sync with
    // makeFuncImpl and runtime.reflectMethodValue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:20:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/runtime/debug/stack_test.go

    		}
    		n++
    	}
    	n++
    
    	frame("runtime/debug/stack.go", "runtime/debug.Stack")
    	frame("runtime/debug/stack_test.go", "runtime/debug_test.(*T).ptrmethod")
    	frame("runtime/debug/stack_test.go", "runtime/debug_test.T.method")
    	frame("runtime/debug/stack_test.go", "runtime/debug_test.TestStack")
    	frame("testing/testing.go", "")
    }
    
    func TestSetCrashOutput(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2.kt

          direction,
          streamId,
          length,
          formattedType,
          formattedFlags,
        )
      }
    
      /**
       * Returns a human-readable representation of a `WINDOW_UPDATE` frame. This frame includes the
       * window size increment instead of flags.
       */
      fun frameLogWindowUpdate(
        inbound: Boolean,
        streamId: Int,
        length: Int,
        windowSizeIncrement: Long,
      ): String {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/runtime/pprof/43669.md

    The maximum stack depth for alloc, mutex, block, threadcreate and goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 124 bytes
    - Viewed (0)
  6. src/runtime/cgo/asm_s390x.s

    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	// Start with standard C stack frame layout and linkage.
    
    	// Save R6-R15 in the register save area of the calling function.
    	STMG	R6, R15, 48(R15)
    
    	// Allocate 96 bytes on the stack.
    	MOVD	$-96(R15), R15
    
    	// Save F8-F15 in our stack frame.
    	FMOVD	F8, 32(R15)
    	FMOVD	F9, 40(R15)
    	FMOVD	F10, 48(R15)
    	FMOVD	F11, 56(R15)
    	FMOVD	F12, 64(R15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/internal/problems/failure/StackFramePredicate.java

        StackFramePredicate USER_CODE = new StackFramePredicate() {
            @Override
            public boolean test(StackTraceElement frame, StackTraceRelevance relevance) {
                return StackTraceRelevance.USER_CODE.equals(relevance);
            }
        };
    
        boolean test(StackTraceElement frame, StackTraceRelevance relevance);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. test/fixedbugs/issue52697.go

    //go:build !386 && !amd64p32 && !arm && !mips && !mipsle
    
    package main
    
    func g() { // GC_ERROR "stack frame too large"
    	xs := [3000 * 2000][33]int{}
    	for _, x := range xs {
    		if len(x) > 50 {
    
    		}
    	}
    }
    
    func main() { // GC_ERROR "stack frame too large"
    	defer f()
    	g()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 16:32:07 UTC 2023
    - 459 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

            }
            return null;
        }
    
        @Nullable
        private Location tryGetLocation(StackTraceElement frame) {
            int lineNumber = frame.getLineNumber();
            if (lineNumber < 0) {
                return null;
            }
    
            ClassLoaderScopeOrigin.Script source = scripts.get(frame.getFileName());
            if (source == null) {
                return null;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      }
    }
    
    TEST(ErrorUtilTest, StatusScopedDiagnosticHandlerWithFilter) {
      // Filtering logic is based on tensorflow::IsInternalFrameForFilename()
      // Note we are surfacing the locations that are NOT internal frames
      // so locations that fail IsInternalFrameForFilename() evaluation pass the
      // filter.
    
      // These locations will fail the IsInternalFrameForFilename() check so will
      // pass the filter.
      MLIRContext context;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top