Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for headSection (0.28 sec)

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

        public void render(PerformanceTestHistory history, Writer writer) throws IOException {
            // @formatter:off
            new MetricsHtml(writer) {{
                html();
                    head();
                        headSection(this);
                        title().text("Flaky report for "+ history.getDisplayName()).end();
                    end();
                    body();
                        h2().text("Flaky report for " + history.getDisplayName()).end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/HtmlPageGenerator.java

            return 0;
        }
    
        protected void metaTag(Html html) {
            html.meta()
                .httpEquiv("Content-Type")
                .content("text/html; charset=utf-8");
        }
    
        protected void headSection(Html html) {
            String rootDir = getDepth() == 0 ? "" : "../";
            metaTag(html);
            html.link()
                .rel("stylesheet")
                .type("text/css")
                .href(rootDir + "css/style.css")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

        @Override
        public void render(final PerformanceTestHistory testHistory, Writer writer) {
            // @formatter:off
            new MetricsHtml(writer) {{
                html();
                head();
                headSection(this);
                title().text(String.format("Performance test %s", testHistory.getDisplayName())).end();
                end();
                body();
                div().id("content");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top