Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for jstack (0.28 sec)

  1. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoUnblock dt=12 g=53 g_seq=3 stack=0
    GoStart dt=5 g=53 g_seq=4
    GoLabel dt=1 label_string=2
    GoBlock dt=1751 reason_string=15 stack=5
    GoUnblock dt=12 g=53 g_seq=5 stack=0
    GoStart dt=6 g=53 g_seq=6
    GoLabel dt=3 label_string=2
    GoBlock dt=119 reason_string=15 stack=5
    GoStart dt=15 g=88 g_seq=4
    GoBlock dt=50 reason_string=13 stack=11
    GoUnblock dt=1212 g=54 g_seq=15 stack=0
    GoStart dt=6 g=54 g_seq=16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
  2. src/cmd/trace/testdata/go122.test

    GoBlock dt=4 reason_string=12 stack=25
    GoStart dt=3 g=19 g_seq=1
    GoUnblock dt=5 g=1 g_seq=7 stack=26
    GoBlock dt=2 reason_string=15 stack=27
    GoStart dt=2 g=1 g_seq=8
    GoCreate dt=8 new_g=20 new_stack=23 stack=24
    GoBlock dt=3 reason_string=12 stack=25
    GoStart dt=2 g=20 g_seq=1
    GoUnblock dt=3 g=1 g_seq=9 stack=26
    GoBlock dt=1 reason_string=15 stack=27
    GoStart dt=2 g=1 g_seq=10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		// Stack was deallocated in gfput or just above. Allocate a new one.
    		systemstack(func() {
    			gp.stack = stackalloc(startingStackSize)
    		})
    		gp.stackguard0 = gp.stack.lo + stackGuard
    	} else {
    		if raceenabled {
    			racemalloc(unsafe.Pointer(gp.stack.lo), gp.stack.hi-gp.stack.lo)
    		}
    		if msanenabled {
    			msanmalloc(unsafe.Pointer(gp.stack.lo), gp.stack.hi-gp.stack.lo)
    		}
    		if asanenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/reflect/value.go

    			continue
    		}
    
    		// There are four cases to handle in translating each
    		// argument:
    		// 1. Stack -> stack translation.
    		// 2. Stack -> registers translation.
    		// 3. Registers -> stack translation.
    		// 4. Registers -> registers translation.
    
    		// If the value ABI passes the value on the stack,
    		// then the method ABI does too, because it has strictly
    		// fewer arguments. Simply copy between the two.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "Single-stack addresses in dual-stack cluster",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "Multiple single-stack addresses in dual-stack cluster",
    			nodeAddresses: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/callback.go

    }
    
    func testCallbackStack(t *testing.T) {
    	// Make cgo call and callback with different amount of stack available.
    	// We do not do any explicit checks, just ensure that it does not crash.
    	for _, f := range splitTests {
    		f()
    	}
    }
    
    //export goStackCheck
    func goStackCheck() {
    	// use some stack memory to trigger split stack check
    	var buf [256]byte
    	use(buf[:])
    }
    
    var Used byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    			expectedAddr:    "::1",
    			expectedPort:    7073,
    		}, // dual-stack use cases
    		{
    			name:            "dual-stack host: defaultEndpoint set to 127.0.0.1:7073",
    			proxy:           &dsProxy,
    			defaultEndpoint: "127.0.0.1:7073",
    			expectedAddr:    "127.0.0.1",
    			expectedPort:    7073,
    		},
    		{
    			name:            "dual-stack host: defaultEndpoint set to [::1]:7073",
    			proxy:           &dsProxy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    			}
    			if retOffset != lt.retOffset {
    				t.Errorf("funcLayout(%v, %v).retOffset=%d, want %d", lt.typ, lt.rcvr, retOffset, lt.retOffset)
    			}
    			if !bytes.Equal(stack, lt.stack) {
    				t.Errorf("funcLayout(%v, %v).stack=%v, want %v", lt.typ, lt.rcvr, stack, lt.stack)
    			}
    			if !bytes.Equal(gc, lt.gc) {
    				t.Errorf("funcLayout(%v, %v).gc=%v, want %v", lt.typ, lt.rcvr, gc, lt.gc)
    			}
    			if !bytes.Equal(inRegs, lt.inRegs) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	// If the error is an ImportPathError, and the last path on the stack appears
    	// in the error message, omit that path from the stack to avoid repetition.
    	// If an ImportPathError wraps another ImportPathError that matches the
    	// last path on the stack, we don't omit the path. An error like
    	// "package A imports B: error loading C caused by B" would not be clearer
    	// if "imports B" were omitted.
    	if len(p.ImportStack) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          fail();
        } catch (CancellationException expected) {
          // There should be two CancellationException chained together.  The outer one should have the
          // stack trace of where the get() call was made, and the inner should have the stack trace of
          // where the immediateCancelledFuture() call was made.
          List<StackTraceElement> stackTrace = ImmutableList.copyOf(expected.getStackTrace());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top