Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for renderStacks (0.4 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        const x = PADDING;
        const y = 0;
    
        displayList.length = 0;
        renderStacks(0, xscale, x, y, places, +1);  // Callees
        renderStacks(0, xscale, x, y-ROW, places, -1);  // Callers (ROW left for separator)
        display(xscale, pos, neg, displayList);
      }
    
      // renderStacks creates boxes with top-left at x,y with children drawn as
      // nested stacks (below or above based on the sign of direction).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

                }
            """
    
            when:
            succeeds tasks
    
            then:
            output.contains("""
    $otherGroupHeader
    a
    b
    """) == rendersTasks
    
            where:
            tasks                      | rendersTasks
            TASKS_REPORT_TASK          | false
            TASKS_DETAILED_REPORT_TASK | true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top