Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 843 for REPORT (0.1 sec)

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

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Set;
    
    import static org.gradle.performance.results.report.FlakinessDetectionPerformanceExecutionDataProvider.isFlaky;
    import static org.gradle.performance.results.report.Tag.FixedTag.FLAKY;
    
    public class FlakinessIndexPageGenerator extends AbstractTablePageGenerator {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/GradleProfilerReporter.java

    import org.gradle.profiler.BenchmarkResultCollector;
    import org.gradle.profiler.InvocationSettings;
    import org.gradle.profiler.report.AbstractGenerator;
    import org.gradle.profiler.report.BenchmarkResult;
    import org.gradle.profiler.report.CsvGenerator;
    import org.gradle.profiler.report.Format;
    import org.gradle.profiler.report.HtmlGenerator;
    
    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/software/reporting/build.gradle.kts

    import gradlebuild.basics.googleApisJs
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Report type classes and plugins for reporting (build dashboard, report container)"
    
    errorprone {
        disabledChecks.addAll(
            "EqualsUnsafeCast", // 1 occurrences
        )
    }
    
    val implementationResources: Configuration by configurations.creating
    
    repositories {
        googleApisJs()
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

                )
            } else {
                assertThat("Unexpected HTML report URI found", reportDir, nullValue())
            }
        }
    
        static Map<String, Object> readJsModelFromReportDir(TestFile reportDir) {
            assertThat("HTML report URI not found", reportDir, notNullValue())
            assertTrue("HTML report directory not found '$reportDir'", reportDir.isDirectory())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemReporter.java

         * that the output is generated in a stable order rather than in an order based on the order that implementations
         * are discovered.
         */
        String getId();
    
        /**
         * Notifies the build user of whatever problems have been collected. May report problems to the console, or generate a report
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	o.UI.PrintErr(u.String())
    }
    
    // makeReport generates a report for the specified command.
    // If configEditor is not null, it is used to edit the config used for the report.
    func (ui *webInterface) makeReport(w http.ResponseWriter, req *http.Request,
    	cmd []string, configEditor func(*config)) (*report.Report, []string) {
    	cfg := currentConfig()
    	if err := cfg.applyURL(req.URL.Query()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/errors.go

    				fmt.Fprintf(&buf, "%s: ", p.pos)
    			}
    		}
    		buf.WriteString(p.msg)
    	}
    	return buf.String()
    }
    
    // report reports the error err, setting check.firstError if necessary.
    func (err *error_) report() {
    	if err.empty() {
    		panic("no error")
    	}
    
    	// Cheap trick: Don't report errors with messages containing
    	// "invalid operand" or "invalid type" as those tend to be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildProfileIntegrationTest.groovy

            when:
            configurationCacheRun(":help", "--profile")
    
            then:
            configurationCache.assertStateStored()
            def report = findReport()
    
            and:
            report.delete()
    
            when:
            configurationCacheRun(":help", "--profile")
    
            then:
            configurationCache.assertStateLoaded()
            findReport()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    == Profile report
    
    If you prefer not to use build scans, you can generate an HTML report in the
    `build/reports/profile` directory of your root project. To generate this report,
    use the `--profile` command-line option:
    
    [listing.terminal]
    ----
    $ gradle --profile <tasks>
    ----
    
    Each profile report has a timestamp in its name to avoid overwriting existing ones.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessScenarioPageGenerator.java

            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();
                        getGraphs(history).forEach(graph -> graph.render(this));
                    end();
                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)
Back to top