Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,496 for Reports (0.19 sec)

  1. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

    tasks.register('copyReportsForArchiving', Copy) {
        from layout.buildDirectory.file("reports/my-report.pdf"), layout.projectDirectory.file("src/docs/manual.pdf")
        into layout.buildDirectory.dir("toArchive")
    }
    // end::copy-multiple-files-example[]
    
    // tag::copy-multiple-files-with-flat-filter-example[]
    tasks.register('copyPdfReportsForArchiving', Copy) {
        from layout.buildDirectory.dir("reports")
        include "*.pdf"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiAggregateReportTask.kt

        abstract val reports: ConfigurableFileCollection
    
        @get:OutputFile
        abstract val htmlReportFile: RegularFileProperty
    
        @get:Inject
        abstract val workerExecutor: WorkerExecutor
    
        @TaskAction
        fun generateReport() = workerExecutor.noIsolation().submit(IncubatingApiReportAggregationWorkAction::class) {
            reports.from(******@****.***s)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 09:32:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

            }
        }
    
        /**
         * Configures the reports to be generated by this task.
         */
        @Override
        @SuppressWarnings("rawtypes")
        public PmdReports reports(@DelegatesTo(value = PmdReports.class, strategy = Closure.DELEGATE_FIRST) Closure closure) {
            return reports(new ClosureBackedAction<>(closure));
        }
    
        /**
         * Configures the reports to be generated by this task.
         *
         * @since 3.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenTextResourceIntegrationTest.groovy

    task text(type: TextTask)
    """
        }
    
        def "reports read of missing text file"() {
            given:
            buildFile << """
                text.text = resources.text.fromFile('no-such-file')
    """
    
            expect:
            fails("text")
    
            def file = file('no-such-file')
            failure.assertHasCause("Could not read '${file}' as it does not exist.")
        }
    
        def "reports read of missing archive"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

        def setup() {
            expectReindentedValidationMessage()
            executer.beforeExecute {
                withStacktraceEnabled()
            }
        }
    
        def "reports task action execution fails with error"() {
            buildFile << """
                task('do-stuff').doFirst {
                    throw new ArithmeticException('broken')
                }
            """
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/go/types/termlist.go

    	}
    	return buf.String()
    }
    
    // isEmpty reports whether the termlist xl represents the empty set of types.
    func (xl termlist) isEmpty() bool {
    	// If there's a non-nil term, the entire list is not empty.
    	// If the termlist is in normal form, this requires at most
    	// one iteration.
    	for _, x := range xl {
    		if x != nil {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.api.reporting.Reporting.xml

                </thead>
                <tr>
                    <td>reports</td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>reports</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 581 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskDependenciesCrossVersionSpec.groovy

    import org.gradle.tooling.model.UnsupportedMethodException
    
    @TargetGradleVersion('>=5.1')
    class TaskDependenciesCrossVersionSpec extends ToolingApiSpecification {
    
        def events = ProgressEvents.create()
    
        def "reports task dependencies when target version supports it"() {
            given:
            buildFile << """
                task a { enabled = false }
                task b { dependsOn(a) }
                task c { dependsOn(b) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemReporter.java

         *
         * @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