Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for GoBlock (0.12 sec)

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

    GoBlock dt=307 reason_string=15 stack=5
    GoUnblock dt=7 g=57 g_seq=11 stack=0
    GoStart dt=3 g=57 g_seq=12
    GoLabel dt=2 label_string=2
    GoBlock dt=1049 reason_string=15 stack=5
    GoUnblock dt=23 g=58 g_seq=7 stack=0
    GoStart dt=8 g=58 g_seq=8
    GoLabel dt=1 label_string=2
    GoBlock dt=1126 reason_string=15 stack=5
    GoUnblock dt=12 g=53 g_seq=3 stack=0
    GoStart dt=5 g=53 g_seq=4
    GoLabel dt=1 label_string=2
    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=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
    GoCreate dt=6 new_g=21 new_stack=23 stack=24
    GoBlock dt=3 reason_string=12 stack=25
    GoStart dt=1 g=21 g_seq=1
    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/internal/trace/testdata/tests/go122-annotations-stress.test

    EventBatch gen=1 m=1986496 time=2753925246280 size=267
    ProcStart dt=549 p=0 p_seq=1
    GoStart dt=211 g=18 g_seq=1
    GoBlock dt=3533 reason_string=12 stack=21
    GoStart dt=41 g=21 g_seq=1
    GoBlock dt=150 reason_string=10 stack=22
    GoStart dt=93 g=20 g_seq=1
    GoSyscallBegin dt=51 p_seq=2 stack=23
    GoSyscallEnd dt=400
    GoBlock dt=582 reason_string=15 stack=25
    GoStart dt=26 g=23 g_seq=1
    HeapAlloc dt=50 heapalloc_value=1646592
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-annotations.test

    ProcStart dt=505 p=1 p_seq=1
    GoStart dt=303 g=7 g_seq=1
    HeapAlloc dt=646 heapalloc_value=1892352
    HeapAlloc dt=149 heapalloc_value=1900544
    GoBlock dt=146 reason_string=12 stack=24
    GoStart dt=14 g=6 g_seq=1
    HeapAlloc dt=16 heapalloc_value=1908736
    GoBlock dt=347 reason_string=12 stack=25
    EventBatch gen=1 m=167928 time=28113086279032 size=10
    ProcStart dt=451 p=2 p_seq=1
    GoStart dt=188 g=8 g_seq=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. src/internal/trace/event/go122/event.go

    		Name:         "GoStop",
    		Args:         []string{"dt", "reason_string", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    		StringIDs:    []int{1},
    	},
    	EvGoBlock: event.Spec{
    		Name:         "GoBlock",
    		Args:         []string{"dt", "reason_string", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    		StringIDs:    []int{1},
    	},
    	EvGoUnblock: event.Spec{
    		Name:         "GoUnblock",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. src/runtime/traceruntime.go

    func (tl traceLocker) GoStop(reason traceGoStopReason) {
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvGoStop, traceArg(trace.goStopReasons[tl.gen%2][reason]), tl.stack(1))
    }
    
    // GoPark emits a GoBlock event with the provided reason.
    //
    // TODO(mknyszek): Replace traceBlockReason with waitReason. It's silly
    // that we have both, and waitReason is way more descriptive.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/parser.go

    	EvGoSched:           {"GoSched", 5, true, []string{}, nil},
    	EvGoPreempt:         {"GoPreempt", 5, true, []string{}, nil},
    	EvGoSleep:           {"GoSleep", 5, true, []string{}, nil},
    	EvGoBlock:           {"GoBlock", 5, true, []string{}, nil},
    	EvGoUnblock:         {"GoUnblock", 5, true, []string{"g", "seq"}, nil}, // in 1.5 format it was {"g"}
    	EvGoBlockSend:       {"GoBlockSend", 5, true, []string{}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    	// for nextg).
    	switch ev.typ {
    	case go122.EvGoSwitch:
    		// Goroutine blocked. It's waiting now and not running on this M.
    		curGState.status = go122.GoWaiting
    
    		// Emit a GoBlock event.
    		// TODO(mknyszek): Emit a reason.
    		o.queue.push(makeEvent(evt, curCtx, go122.EvGoBlock, ev.time, 0 /* no reason */, 0 /* no stack */))
    	case go122.EvGoSwitchDestroy:
    		// This goroutine is exiting itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. test/ken/chan.go

    		if v%100 == 75 {
    			return end
    		}
    		return v + 1
    	}
    	print("got ", v, " expected ", v0+1, "\n")
    	panic("fail")
    }
    
    func (c *Chan) send() bool {
    	//	print("send ", c.sv, "\n");
    	totLock.Lock()
    	tots++
    	totLock.Unlock()
    	c.sv = expect(c.sv, c.sv)
    	if c.sv == end {
    		c.sc = nil
    		return true
    	}
    	return false
    }
    
    func send(c *Chan) {
    	for {
    		for r := nrand(10); r >= 0; r-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    	if status, ok := p.podSyncStatuses[uid]; ok {
    		return status.IsTerminated()
    	}
    	// if the pod is not known, we return false (pod worker is not aware of it)
    	return false
    }
    
    func (p *podWorkers) CouldHaveRunningContainers(uid types.UID) bool {
    	p.podLock.Lock()
    	defer p.podLock.Unlock()
    	if status, ok := p.podSyncStatuses[uid]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top