Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,496 for Reports (0.23 sec)

  1. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/internal/TaskReportContainerIntegTest.groovy

                    @Nested
                    TaskReportContainer reports = project.services.get(org.gradle.internal.reflect.Instantiator).newInstance(TestTaskReportContainer, this)
    
                    @TaskAction
                    def doStuff() {
                        reports.enabled.each {
                             if (it.outputType == Report.OutputType.FILE) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesFilesMiscIntegrationTest.groovy

            def toArchiveDir = dslDir.file("build/toArchive")
            toArchiveDir.file("reports").isDirectory()
            toArchiveDir.file("reports/my-report.pdf").isFile()
            toArchiveDir.file("reports/numbers.csv").isFile()
            toArchiveDir.file("reports/metrics/scatterPlot.pdf").isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("files/misc")
        @Requires(IntegTestPreconditions.IsConfigCached)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/ParsedCommandLineOptionSpec.groovy

    class ParsedCommandLineOptionSpec extends Specification {
    
        final option = new ParsedCommandLineOption();
    
        def "reports no value"() {
            when:
            option.getValue()
    
            then:
            thrown(IllegalStateException)
            !option.hasValue()
        }
    
        def "reports single value"() {
            when:
            option.addArgument("foo")
    
            then:
            option.hasValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. api/pom.xml

                    </tag>
                  </tags>
                </configuration>
                <reportSets>
                  <reportSet>
                    <id>aggregate</id>
                    <reports>
                      <report>aggregate</report>
                    </reports>
                    <inherited>false</inherited>
                  </reportSet>
                </reportSets>
              </plugin>
              <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

         * @return The reports that this task potentially produces
         */
        @Override
        public TestTaskReports reports(Closure closure) {
            return reports(new ClosureBackedAction<TestTaskReports>(closure));
        }
    
        /**
         * Configures the reports that this task potentially produces.
         *
         * @param configureAction The configuration
         * @return The reports that this task potentially produces
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/ProjectReportsPluginConvention.java

        /**
         * The name of the directory to generate the project reports into, relative to the project's reports dir.
         */
        public abstract String getProjectReportDirName();
    
        public abstract void setProjectReportDirName(String projectReportDirName);
    
        /**
         * Returns the directory to generate the project reports into.
         */
        public abstract File getProjectReportDir();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 22:14:03 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginMultiVersionIntegrationTest.groovy

            htmlReport().totalCoverage() == 100
        }
    
        def "can configure reports in jacoco test report"() {
            given:
            buildFile << """
                jacocoTestReport {
                    reports {
                        xml.required = true
                        csv.required = true
                        html.outputLocation.set(file("\${buildDir}/jacocoHtml"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report.gradle.kts

        group = "verification"
        description = "Generates a report of incubating APIS"
        title = project.name
        versionFile = repoRoot().file("version.txt")
        releasedVersionsFile = releasedVersionsFile()
        sources.from(sourceSets.main.get().java.sourceDirectories)
        sources.from(sourceSets.main.get().groovy.sourceDirectories)
        htmlReportFile = file(layout.buildDirectory.file("reports/incubation/${project.name}.html"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_predicates.go

    	return (*Checker)(nil).implements(nopos, V, T, false, nil)
    }
    
    // Satisfies reports whether type V satisfies the constraint T.
    //
    // The behavior of Satisfies is unspecified if V is Typ[Invalid] or an uninstantiated
    // generic type.
    func Satisfies(V Type, T *Interface) bool {
    	return (*Checker)(nil).implements(nopos, V, T, true, nil)
    }
    
    // Identical reports whether x and y are identical types.
    // Receivers of [Signature] types are ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/IncludedBuildValidationIntegrationTest.groovy

    """
            }
        }
    
        def "reports failure when included build directory does not exist"() {
            when:
            def buildDir = new File("does-not-exist")
            includedBuilds << buildDir
    
            then:
            fails(buildA, "help")
    
            and:
            failure.assertHasDescription("Included build '${buildDir.absolutePath}' does not exist.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top