Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,496 for Reports (0.12 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

      { CU_assertImplementation(CU_TRUE, __LINE__, ("CU_PASS(" #msg ")"), __FILE__, "", CU_FALSE); }
    
    /** Simple assertion.
     *  Reports failure with no other action.
     */
    #define CU_ASSERT(value) \
      { CU_assertImplementation((value), __LINE__, #value, __FILE__, "", CU_FALSE); }
    
    /** Simple assertion.
     *  Reports failure and causes test to abort.
     */
    #define CU_ASSERT_FATAL(value) \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstylePluginTest.groovy

            task.configProperties == [:]
            task.reports.xml.outputLocation.asFile.get() == project.file("build/reports/checkstyle/custom.xml")
            task.reports.html.outputLocation.asFile.get() == project.file("build/reports/checkstyle/custom.html")
            task.reports.sarif.outputLocation.asFile.get() == project.file("build/reports/checkstyle/custom.sarif")
            !task.ignoreFailures
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. platforms/software/reporting/src/integTest/groovy/org/gradle/api/reporting/plugins/BuildDashboardPluginIntegrationTest.groovy

        void 'build dashboard for a project with no other reports lists just the dashboard'() {
            when:
            run('buildDashboard')
    
            then:
            reports.size() == 1
            hasReport(':buildDashboard', 'html')
            unavailableReports.empty
        }
    
        @ToBeFixedForConfigurationCache(because = ":buildDashboard")
        void 'build dashboard lists the enabled reports for the project'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Reporting.java

         */
        T getReports();
    
        /**
         * Allow configuration of the report container by closure.
         *
         * <pre>
         * reports {
         *   html {
         *     required false
         *   }
         *   xml.outputLocation = "build/reports/myReport.xml"
         * }
         * </pre>
         *
         * @param closure The configuration
         * @return The report container
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CodeNarcPluginTest.groovy

            task.maxPriority3Violations == 200
            task.reports.enabled*.name == ["xml"]
            task.reports.xml.outputLocation.asFile.get() == project.file("codenarc-reports/custom.xml")
            task.ignoreFailures == true
        }
    
        def "can customize task directly"() {
            CodeNarc task = project.tasks.create("codenarcCustom", CodeNarc)
    
            task.reports.xml {
                required = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

            file("build/reports/pmd/test.xml").assertContents(containsClass("org.gradle.Class1Test"))
        }
    
        void "can ignore failures"() {
            badCode()
            buildFile << """
                pmd {
                    ignoreFailures = true
                }
            """
    
            expect:
            succeeds("check")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. operator/pkg/util/reflect.go

    		return reflect.Invalid
    	}
    	return reflect.TypeOf(value).Kind()
    }
    
    // IsString reports whether value is a string type.
    func IsString(value any) bool {
    	return kindOf(value) == reflect.String
    }
    
    // IsPtr reports whether value is a ptr type.
    func IsPtr(value any) bool {
    	return kindOf(value) == reflect.Ptr
    }
    
    // IsMap reports whether value is a map type.
    func IsMap(value any) bool {
    	return kindOf(value) == reflect.Map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/test/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilderTest.kt

            val reports = buildEditorReportsFor(
                script,
                listOf(LocationAwareException(Exception("BOOM"), script.canonicalPath, 3)),
                true
            )
    
            assertThat(reports.size, equalTo(1))
            reports.single().let { report ->
                assertThat(report.severity, equalTo(EditorReportSeverity.WARNING))
                assertThat(report.position, notNullValue())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top