Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for renderTable (0.23 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                            div().id("accordion").classAttr("mx-auto");
                            renderTableHeader();
                            renderTable("Cross version scenarios", "Compare the performance of the same build on different code versions.", determineBaseline(), getCrossVersionScenarios());
                            renderTable("Cross build scenarios", "Compare the performance of different builds", Optional.empty(), getCrossBuildScenarios());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/contextReceivers/renderers/KtContextReceiverLabelRenderer.kt

    public interface KaContextReceiverLabelRenderer {
        public fun renderLabel(
            analysisSession: KaSession,
            contextReceiver: KaContextReceiver,
            contextReceiversRenderer: KaContextReceiversRenderer,
            printer: PrettyPrinter,
        )
    
        public object WITH_LABEL : KaContextReceiverLabelRenderer {
            override fun renderLabel(
                analysisSession: KaSession,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/contextReceivers/renderers/KtContextReceiverListRenderer.kt

                printer {
                    append("context(")
                    printCollection(contextReceivers) { contextReceiver ->
                        contextReceiversRenderer.contextReceiverLabelRenderer
                            .renderLabel(analysisSession, contextReceiver, contextReceiversRenderer, printer)
    
                        typeRenderer.renderType(analysisSession, contextReceiver.type, printer)
                    }
                    append(")")
                }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/WorkInProgressRendererTest.groovy

            when:
            renderer.onOutput(start(1))
            console.flush()
    
            then:
            progressArea.display == []
        }
    
        def "parent progress operation without message is ignored when renderable child completes"() {
            when:
            renderer.onOutput(start(1))
            renderer.onOutput(start(id: 2, parentId: 1, status: ":foo"))
            renderer.onOutput(start(id: 3, parentId: null, status: ":bar"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/WorkInProgressRenderer.java

            }
            unassignedProgressOperations.remove(operation);
        }
    
        // Any ProgressOperation in the parent chain has a message, the operation is considered renderable.
        private boolean isRenderable(ProgressOperation operation) {
            for (ProgressOperation current = operation; current != null; current = current.getParent()) {
                if (current.getMessage() != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top