Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 476 for Reports (0.24 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReport.java

        public JacocoReportsContainer getReports() {
            return reports;
        }
    
        /**
         * Configures the reports to be generated by this task.
         */
        @Override
        public JacocoReportsContainer reports(Closure closure) {
            return reports(new ClosureBackedAction<JacocoReportsContainer>(closure));
        }
    
        @Override
        public JacocoReportsContainer reports(Action<? super JacocoReportsContainer> configureAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/software/reporting/src/main/java/org/gradle/api/reporting/GenerateBuildDashboard.java

        }
    
        /**
         * The reports to be generated by this task.
         *
         * @return The reports container
         */
        @Nested
        @Override
        public BuildDashboardReports getReports() {
            return reports;
        }
    
        /**
         * Configures the reports to be generated by this task.
         *
         * The contained reports can be configured by name and closures.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:30:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/plugins/ProjectReportsPluginIntegrationSpec.groovy

            buildFile << """
            plugins {
                id 'project-report'
            }
            """
        }
    
        def "produces report files"() {
            when:
            succeeds("projectReport")
    
            then:
            file("build/reports/project/dependencies.txt").assertExists()
            file("build/reports/project/properties.txt").assertExists()
            file("build/reports/project/tasks.txt").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesCodeQualityIntegrationTest.groovy

            buildDir.file('reports/codenarc/main.html').assertIsFile()
            buildDir.file('reports/codenarc/test.html').assertIsFile()
            buildDir.file('reports/pmd/main.html').assertIsFile()
            buildDir.file('reports/pmd/main.xml').assertIsFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/project-with-source/build.xml

                </batchtest>
                <formatter type="xml"/>
            </junit>
            <!--<junitreport toDir="\${build.dir}">-->
                <!--<fileset dir="\${test.reports.dir}" includes="*.xml"/>-->
                <!--<report todir="\${test.reports.dir}"/>-->
            <!--</junitreport>-->
        </target>
    
        <target name="jar" depends="compile">
            <jar destfile="\${build.dir}/production.jar">
                <fileset dir="\${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

        public DependencyReportContainer reports(Closure closure) {
            return reports(new ClosureBackedAction<>(closure));
        }
    
        @Override
        public DependencyReportContainer reports(Action<? super DependencyReportContainer> configureAction) {
            configureAction.execute(reports);
            return reports;
        }
    
        @Inject
        protected ObjectFactory getObjectFactory() {
            throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoReport.java

            if (reports.getHtml().getRequired().get()) {
                antBuilder.invokeMethod("html", new Object[]{
                    ImmutableMap.<String, Object>of("destdir", reports.getHtml().getOutputLocation().getAsFile().get())
                });
            }
            if (reports.getXml().getRequired().get()) {
                antBuilder.invokeMethod("xml", new Object[]{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    // files to handle
    type work struct {
    	// absolute file names
    	countfiles []string // count files to process
    	readyfiles []string // old reports to upload
    	// relative names
    	uploaded map[string]bool // reports that have been uploaded
    }
    
    // find all the files that look like counter files or reports
    // that need to be uploaded. (There may be unexpected leftover files
    // and uploading is supposed to be idempotent.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. Jenkinsfile

                                        // in ITs test we need only reports from test itself
                                        // test projects can contain reports with tested failed builds
                                        junit testResults: '**/core-it-suite/target/surefire-reports/*.xml,**/core-it-support/**/target/surefire-reports/*.xml', allowEmptyResults: true
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. src/internal/platform/supported.go

    	FirstClass   bool
    	Broken       bool
    }
    
    // CgoSupported reports whether goos/goarch supports cgo.
    func CgoSupported(goos, goarch string) bool {
    	return distInfo[OSArch{goos, goarch}].CgoSupported
    }
    
    // FirstClass reports whether goos/goarch is considered a “first class” port.
    // (See https://go.dev/wiki/PortingPolicy#first-class-ports.)
    func FirstClass(goos, goarch string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top