Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 818 for Reports (0.11 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	}
    	// 1. generate the local report
    	localContents, err := json.MarshalIndent(report, "", " ")
    	if err != nil {
    		return "", fmt.Errorf("failed to marshal report for %s: %v", expiryDate, err)
    	}
    	// check that the report can be read back
    	// TODO(pjw): remove for production?
    	var report2 telemetry.Report
    	if err := json.Unmarshal(localContents, &report2); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginVersionIntegrationTest.groovy

            succeeds('check')
            file("build/reports/checkstyle/main.sarif").assertDoesNotExist()
            file("build/reports/checkstyle/test.sarif").assertDoesNotExist()
            file("build/reports/checkstyle/main.xml").assertContents(containsClass("org.gradle.Class1"))
            file("build/reports/checkstyle/main.xml").assertContents(containsClass("org.gradle.Class2"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            task.ruleSetFiles.singleFile == project.file("my-ruleset.xml")
            task.reports.xml.outputLocation.asFile.get() == project.file("pmd-reports/custom.xml")
            task.reports.html.outputLocation.asFile.get() == project.file("pmd-reports/custom.html")
            task.outputs.files.files == task.reports.enabled*.outputLocation.collect { it.get().asFile } as Set
            task.ignoreFailures == true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            file("application/build/reports/jacoco/testCodeCoverageReport/html/index.html").assertExists()
    
            def report = new JacocoReportXmlFixture(file("application/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml"))
            report.assertHasClassCoverage("application.Adder")
            report.assertHasClassCoverage("direct.Multiplier")
            report.assertHasClassCoverage("transitive.Powerize")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. src/go/types/predicates.go

    		if dynamic && !isTypeParam(T) || t.typeSet().IsComparable(seen) {
    			return true
    		}
    		if reportf != nil {
    			if t.typeSet().IsEmpty() {
    				reportf("empty type set")
    			} else {
    				reportf("incomparable types in type set")
    			}
    		}
    		// fallthrough
    	}
    	return false
    }
    
    // hasNil reports whether type t includes the nil value.
    func hasNil(t Type) bool {
    	switch u := under(t).(type) {
    	case *Basic:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Checkstyle.java

         * @param closure The configuration
         * @return The reports container
         */
        @Override
        @SuppressWarnings("rawtypes")
        public CheckstyleReports reports(@DelegatesTo(value = CheckstyleReports.class, strategy = Closure.DELEGATE_FIRST) Closure closure) {
            return reports(new ClosureBackedAction<>(closure));
        }
    
        /**
         * Configures the reports to be generated by this task.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:12 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top