Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 419 for timeline (1.5 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/performance/timeline.png

    timeline.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 98.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/performance/timeline-not-cacheable.png

    timeline-not-cacheable.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 77.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/build-cache/overlapping-outputs-timeline.png

    overlapping-outputs-timeline.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 94.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/fossil/hello.txt

    fossil open --keep hello.fossil
    
    fossil add hello.go
    fossil commit --no-prompt --nosign --date-override 2017-09-22T01:19:07Z --comment 'hello world'
    
    fossil timeline --oneline
    cmp stdout .fossil-timeline
    
    -- .fossil-timeline --
    d4c7dcdc29 hello world
    58da0d15e9 initial empty check-in
    +++ no more data (2) +++
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 470 bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/http.go

      It also shows a table of specific goroutine instances, with various
      execution statistics and a link to the event timeline for each one.
    
      The timeline displays only the selected goroutine and any others it
      interacts with via block/unblock events. (The timeline is
      goroutine-oriented rather than logical processor-oriented.)
    </p>
    
    <h2>Profiles</h2>
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/format/format.go

    }
    
    type HeapCountersArg struct {
    	Allocated uint64
    	NextGC    uint64
    }
    
    const (
    	ProcsSection = 0 // where Goroutines or per-P timelines are presented.
    	StatsSection = 1 // where counters are presented.
    	TasksSection = 2 // where Task hierarchy & timeline is presented.
    )
    
    type GoroutineCountersArg struct {
    	Running   uint64
    	Runnable  uint64
    	GCWaiting uint64
    }
    
    type ThreadCountersArg struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	for {
    		// If the tree head looks old, check that it is on our timeline.
    		if tree.N <= latest.N {
    			if err := c.checkTrees(tree, msg, latest, latestMsg); err != nil {
    				return 0, err
    			}
    			if tree.N < latest.N {
    				return msgPast, nil
    			}
    			return msgNow, nil
    		}
    
    		// The tree head looks new. Check that we are on its timeline and try to move our timeline forward.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_sumdb.txt

    go mod edit -require rsc.io/quote@v1.5.2
    ! go mod tidy
    stderr 'go: rsc.io/quote@v1.5.2: verifying go.mod: checksum mismatch'
    stderr 'SECURITY ERROR\n'
    
    rm go.sum
    
    # switching to truthful sumdb detects timeline inconsistency
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    ! go get rsc.io/fortune
    stderr 'SECURITY ERROR\ngo.sum database server misbehavior detected!'
    stderr 'proof of misbehavior:'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/globalflags_linux.go

    	const deprecated = "This is a cadvisor flag that was mistakenly registered with the Kubelet. Due to legacy concerns, it will follow the standard CLI deprecation timeline before being removed."
    
    	registerDeprecated(global, local, "application_metrics_count_limit", deprecated)
    	registerDeprecated(global, local, "boot_id_file", deprecated)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 07 20:15:13 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Click on a category to see a timeline screen that highlights tasks of that category.
    
    image::performance/task-execution-cacheable.png[title="A task oriented view of performance"]
    
    image::performance/timeline-not-cacheable.png[title="Timeline screen with 'not cacheable' tasks only"]
    
    Sort by task duration on the timeline screen to highlight tasks with great time saving potential.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top