Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for recordLine (0.33 sec)

  1. src/runtime/mprof.go

    //
    // The M will track this by storing a pointer to the lock; lock/unlock pairs for
    // runtime-internal locks are always on the same M.
    //
    // Together, that demands several steps for recording contention. First, when
    // finally acquiring a contended lock, the M decides whether it should plan to
    // profile that event by storing a pointer to the lock in its "to be profiled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/runtime/traceback.go

    // complete a stack trace whenever it is called, and simply copy that
    // out in the traceback function, in a typical program the context
    // function will be called many times without ever recording a
    // traceback for that context. Recording a complete stack trace in a
    // call to the context function is likely to be inefficient.
    //
    // The traceback function will be called with a single argument, a
    // pointer to a struct:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
       * of reads may not be immediately reflected on the algorithm's data structures. These structures
       * are guarded by a lock and operations are applied in batches to avoid lock contention. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    func blockMutex(t *testing.T) {
    	var mu sync.Mutex
    	mu.Lock()
    	go func() {
    		awaitBlockedGoroutine(t, "sync.Mutex.Lock", "blockMutex", 1)
    		mu.Unlock()
    	}()
    	// Note: Unlock releases mu before recording the mutex event,
    	// so it's theoretically possible for this to proceed and
    	// capture the profile before the event is recorded. As long
    	// as this is blocked before the unlock happens, it's okay.
    	mu.Lock()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
       * of reads may not be immediately reflected on the algorithm's data structures. These structures
       * are guarded by a lock and operations are applied in batches to avoid lock contention. The
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    (e.g.: []T{{...}, {...}}, the hint is the type T in this case).
    
    All expressions are checked via rawExpr, which dispatches according
    to expression kind. Upon returning, rawExpr is recording the types and
    constant values for all expressions that have an untyped type (those types
    may change on the way up in the expression tree). Usually these are constants,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    (e.g.: []T{{...}, {...}}, the hint is the type T in this case).
    
    All expressions are checked via rawExpr, which dispatches according
    to expression kind. Upon returning, rawExpr is recording the types and
    constant values for all expressions that have an untyped type (those types
    may change on the way up in the expression tree). Usually these are constants,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. src/runtime/mbitmap.go

    // (referred to as "scalar", though it could be a dead pointer value).
    //
    // Heap bitmaps
    //
    // The heap bitmap comprises 1 bit for each pointer-sized word in the heap,
    // recording whether a pointer is stored in that word or not. This bitmap
    // is stored at the end of a span for small objects and is unrolled at
    // runtime from type metadata for all larger objects. Objects without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	}
    	return result
    }
    
    var pendingPodsSummary = "activeQ:%v; backoffQ:%v; unschedulablePods:%v"
    
    // PendingPods returns all the pending pods in the queue; accompanied by a debugging string
    // recording showing the number of pods in each queue respectively.
    // This function is used for debugging purposes in the scheduler cache dumper and comparer.
    func (p *PriorityQueue) PendingPods() ([]*v1.Pod, string) {
    	p.lock.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    			tg.env = append(tg.env[:i], tg.env[i+1:]...)
    			break
    		}
    	}
    }
    
    func (tg *testgoData) goTool() string {
    	return testGo
    }
    
    // doRun runs the test go command, recording stdout and stderr and
    // returning exit status.
    func (tg *testgoData) doRun(args []string) error {
    	tg.t.Helper()
    	if tg.inParallel {
    		for _, arg := range args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top