Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for noframes (0.34 sec)

  1. src/runtime/mgcmark.go

    			// parent frame. Scan the parent
    			// conservatively.
    			state.conservative = true
    		} else {
    			// We only wanted to scan those two frames
    			// conservatively. Clear the flag for future
    			// frames.
    			state.conservative = false
    		}
    		return
    	}
    
    	locals, args, objs := frame.getStackMap(false)
    
    	// Scan local variables if stack frame has been allocated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/zcallback_windows.s

    // appropriately so different callbacks start with different
    // CALL instruction in runtime·callbackasm. This determines
    // which Go callback function is executed later on.
    
    TEXT runtime·callbackasm(SB),NOSPLIT|NOFRAME,$0
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    	CALL	runtime·callbackasm1(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 19:29:51 UTC 2023
    - 63.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/crypto/internal/nistec/p256_asm_s390x.s

    #undef CAR1
    #undef CAR2
    
    // ---------------------------------------
    
    // Parameters
    #define X0    V0
    #define X1    V1
    #define Y0    V2
    #define Y1    V3
    
    TEXT p256SqrInternal<>(SB), NOFRAME|NOSPLIT, $0
    	VLR X0, Y0
    	VLR X1, Y1
    	BR  p256MulInternal<>(SB)
    
    #undef X0
    #undef X1
    #undef Y0
    #undef Y1
    
    #define p256SubInternal(T1, T0, X1, X0, Y1, Y0) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/xcoff.go

    	SSUBTYP_DWSTR   = 0x70000 // DWARF strings section
    	SSUBTYP_DWRNGES = 0x80000 // DWARF ranges section
    	SSUBTYP_DWLOC   = 0x90000 // DWARF location lists section
    	SSUBTYP_DWFRAME = 0xA0000 // DWARF frames section
    	SSUBTYP_DWMAC   = 0xB0000 // DWARF macros section
    )
    
    // Headers size
    const (
    	FILHSZ_32      = 20
    	FILHSZ_64      = 24
    	AOUTHSZ_EXEC32 = 72
    	AOUTHSZ_EXEC64 = 120
    	SCNHSZ_32      = 40
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val call2 = client.newCall(Request(server.url("/")))
        val response2 = call2.execute()
        assertThat(response2.body.string()).isEqualTo("abc")
      }
    
      /** Wait for the client to receive `dataLength` DATA frames.  */
      private fun waitForDataFrames(dataLength: Int) {
        val expectedFrameCount = dataLength / 16384
        var dataFrameCount = 0
        while (dataFrameCount < expectedFrameCount) {
          val log = testLogHandler.take()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Garbage collector: type and heap bitmaps.
    //
    // Stack, data, and bss bitmaps
    //
    // Stack frames and global variables in the data and bss sections are
    // described by bitmaps with 1 bit per pointer-sized word. A "1" bit
    // means the word is a live pointer to be visited by the GC (referred to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    	// concurrentSweep is a debug flag. Disabling this flag
    	// ensures all spans are swept while the world is stopped.
    	concurrentSweep = true
    
    	// debugScanConservative enables debug logging for stack
    	// frames that are scanned conservatively.
    	debugScanConservative = false
    
    	// sweepMinHeapDistance is a lower bound on the heap distance
    	// (in bytes) reserved for concurrent sweeping between GC
    	// cycles.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. src/runtime/zcallback_windows_arm64.s

    // indexes into an array that stores information about each callback.
    // It then calls the Go implementation for that callback.
    #include "textflag.h"
    
    TEXT runtime·callbackasm(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$0, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$1, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$2, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$3, R12
    	B	runtime·callbackasm1(SB)
    	MOVD	$4, R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 21:52:38 UTC 2021
    - 89.3K bytes
    - Viewed (0)
Back to top