Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 989 for REPORT (0.34 sec)

  1. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/BuildDashboardGeneratorSpec.groovy

            generator.render([mockReport('\u03b1\u03b2', tmpDir.createFile('report.html'))], outputFile)
    
            then:
            outputHtml.select('h1').text() == 'Build reports'
            with outputHtml.select('ul li'), {
                size() == 1
                select('a[href=report.html]').text() == '\u03b1\u03b2'
            }
        }
    
        void 'report css is set up'() {
            when:
            generator.render([], outputFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/sidecar/selector.go

    		}
    
    		sNames := getNames(sList)
    
    		for _, rs := range sList {
    			// We don't want to report errors for pods in ambient mode, since there is no sidecar,
    			// but we do want to warn that the policy is ineffective.
    			if util.PodInAmbientMode(podResource) {
    				if !reportedResources[rs.Metadata.FullName.String()] {
    					c.Report(gvk.Sidecar, msg.NewIneffectivePolicy(rs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/PmdInvoker.groovy

                }
    
                reports.each { report ->
                    File file = report.outputLocation.asFile.get()
                    assert file.parentFile.exists()
                    String type = report.name.get() == "html" ? htmlFormat : report.name.get()
                    formatter(type: type, toFile: file)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/ProjectReportsPlugin.java

    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.util.internal.WrapUtil;
    
    /**
     * <p>A {@link Plugin} which adds some project visualization report tasks to a project.</p>
     *
     * @see <a href="https://docs.gradle.org/current/userguide/project_report_plugin.html">Project Report plugin reference</a>
     */
    public abstract class ProjectReportsPlugin implements Plugin<Project> {
        public static final String TASK_REPORT = "taskReport";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 13 12:55:19 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/SimpleReport.java

        }
    
        @Override
        public String toString() {
            return "Report " + getName();
        }
    
        @Override
        public abstract FileSystemLocationProperty<? extends FileSystemLocation> getOutputLocation();
    
        @Deprecated
        @Override
        public void setDestination(File file) {
            DeprecationLogger.deprecateProperty(Report.class, "destination")
                    .replaceWith("outputLocation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:05:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoReportAggregationPlugin.java

            reporting.getReports().registerBinding(JacocoCoverageReport.class, DefaultJacocoCoverageReport.class);
    
            // Iterate and configure each user-specified report.
            reporting.getReports().withType(JacocoCoverageReport.class).all(report -> {
                report.getReportTask().configure(task -> {
                    ArtifactView executionData = codeCoverageResultsConf.getIncoming().artifactView(view -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:25:42 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    ====
    
    The `application` project requires no additional configuration if the `jvm-test-suite` plugin is present.
    
    <1> Apply the `jacoco-report-aggregation` plugin
    <2> Optional: make JaCoCo aggregate report generation part of the 'check' lifecycle phase
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	match := dateRE.FindStringSubmatch(fname)
    	if match == nil || len(match) < 2 {
    		u.logger.Printf("Report name %q missing date", filepath.Base(fname))
    	} else if match[1] > today {
    		u.logger.Printf("Report date for %q is later than today (%s)", filepath.Base(fname), today)
    		return // report is in the future, which shouldn't happen
    	}
    	buf, err := os.ReadFile(fname)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/DependencyReportContainer.java

    import org.gradle.api.reporting.Report;
    import org.gradle.api.reporting.ReportContainer;
    import org.gradle.api.tasks.Internal;
    
    /**
     * The set of reports that can be generated by the {@link HtmlDependencyReportTask} task type.
     */
    public interface DependencyReportContainer extends ReportContainer<Report> {
        /**
         * The dependency HTML report
         *
         * @return The dependency HTML report
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 15 16:11:05 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/ReportRenderer.java

    import java.io.IOException;
    
    /**
     * Renders the model of a project report.
     */
    public interface ReportRenderer {
    
        /**
         * Set the build client metadata.
         *
         * @param clientMetaData the build client metadata, never null
         */
        void setClientMetaData(BuildClientMetaData clientMetaData);
    
        /**
         * Sets the text output for the report. This method must be called before any other methods on this renderer.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 2K bytes
    - Viewed (0)
Back to top