Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 989 for REPORT (0.1 sec)

  1. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/buildSrc/src/main/kotlin/myproject.xctest-conventions.gradle.kts

    // tag::test-report[]
    plugins {
        id("xctest")
    }
    
    extensions.configure<SwiftXCTestSuite>() {
        binaries.configureEach {
            // Disable the test report for the individual test task
            runTask.get().reports.html.required = false
        }
    }
    
    configurations.create("binaryTestResultsElements") {
        isCanBeResolved = false
        isCanBeConsumed = true
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 660 bytes
    - Viewed (0)
  2. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Reporting.java

     * </p>
     * <pre>
     * class MyTask implements Reporting&lt;MyReportContainer&gt; {
     *     // implementation
     * }
     *
     * interface MyReportContainer extends ReportContainer&lt;Report&gt; {
     *     Report getHtml();
     *     Report getCsv();
     * }
     * </pre>
     * <p>
     * The reporting aspects of such a task can be configured as such:
     * </p>
     * <pre>
     * task my(type: MyTask) {
     *     reports {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdReports.java

        /**
         * The pmd (single file) HTML report
         *
         * @return The pmd (single file) HTML report
         */
        @Internal
        SingleFileReport getHtml();
    
        /**
         * The pmd (single file) XML report
         *
         * @return The pmd (single file) XML report
         */
        @Internal
        SingleFileReport getXml();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/reporting/src/main/java/org/gradle/api/reporting/internal/DefaultReportContainer.java

            N report = getInstantiator().newInstance(clazz, constructionArgs);
            String name = report.getName();
            if (name.equals("enabled")) {
                throw new InvalidUserDataException("Reports that are part of a ReportContainer cannot be named 'enabled'");
            }
            getStore().add(report);
            index();
            return report;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/HtmlReportWriter.kt

    import org.gradle.internal.configuration.problems.DecoratedPropertyProblem
    import java.io.Writer
    
    
    /**
     * Writes the configuration cache html report.
     *
     * The report is laid out in such a way as to allow extracting the pure JSON model
     * by looking for the `// begin-report-data` and `// end-report-data` markers.
     */
    internal
    class HtmlReportWriter(val writer: Writer) {
    
        private
        val jsonModelWriter = JsonModelWriter(writer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-distribution/README.adoc

    WARNING: The Test Report Aggregation plugin does not currently work with the ``com.android.application`` plugin.
    
    ====
    include::sample[dir="kotlin",files="application/build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. testing/performance/README.md

    - Build configuration time.
    - Task execution time.
    - Heap consumption at the end of the build.
    - Total heap usage during the build
    
    ### Report
    
    A `performance:report` task generates a static HTML report from the contents of the database in `~/.gradle-performance-test-data`. This report allows the results over
    time to be visualized.
    
    The reports for the most recent test suite run against master can be found at:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. pilot/pkg/status/distribution/report_test.go

    )
    
    func TestReportSerialization(t *testing.T) {
    	in := Report{
    		Reporter:       "Me",
    		DataPlaneCount: 10,
    		InProgressResources: map[string]int{
    			(&status.Resource{
    				Name:      "water",
    				Namespace: "default",
    			}).String(): 1,
    		},
    	}
    	outbytes, err := yaml.Marshal(in)
    	RegisterTestingT(t)
    	Expect(err).To(BeNil())
    	out := Report{}
    	err = yaml.Unmarshal(outbytes, &out)
    	Expect(err).To(BeNil())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/types.go

    }
    
    type CounterConfig struct {
    	Name  string
    	Rate  float64 // If X <= Rate, report this counter
    	Depth int     `json:",omitempty"` // for stack counters
    }
    
    // A Report is what's uploaded (or saved locally)
    type Report struct {
    	Week     string  // first day this report covers (YYYY-MM-DD)
    	LastWeek string  // Week field from latest previous report uploaded
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemReporter.java

         * The created problem can be later reported with {@link #report(Problem)}.
         *
         * @param action The problem configuration.
         * @return The new problem.
         */
        Problem create(Action<InternalProblemSpec> action);
    
        /**
         * Reports the target problem.
         *
         * @param problem The problem to report.
         */
        void report(Problem problem);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top