Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 502 for REPORT (0.16 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		return total / div
    	}
    	return total
    }
    
    // Report contains the data and associated routines to extract a
    // report from a profile.
    type Report struct {
    	prof        *profile.Profile
    	total       int64
    	options     *Options
    	formatValue func(int64) string
    }
    
    // Total returns the total number of samples in a report.
    func (rpt *Report) Total() int64 { return rpt.total }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/configuration-cache/problems-report.png

    problems-report.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/configuration-cache/inputs-report.png

    inputs-report.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/performance/gradle-profile-report.png

    gradle-profile-report.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            def report = new JacocoReportXmlFixture(file("application/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml"))
            report.assertHasClassCoverage("application.Adder")
            report.assertHasClassCoverage("direct.Multiplier")
            report.assertHasClassCoverage("transitive.Powerize")
        }
    
        def "aggregated report does not contain external dependencies"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    	}
    
    	var uploadContents []byte
    	if uploadOK {
    		// 2. create the uploadable version
    		cfg := config.NewConfig(u.config)
    		upload := &telemetry.Report{
    			Week:     report.Week,
    			LastWeek: report.LastWeek,
    			X:        report.X,
    			Config:   report.Config,
    		}
    		for _, p := range report.Programs {
    			// does the uploadConfig want this program?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	if err != nil {
    		return err
    	}
    
    	// Generate the report.
    	dst := new(bytes.Buffer)
    	switch rpt.OutputFormat() {
    	case report.WebList:
    		// We need template expansion, so generate here instead of in report.
    		err = printWebList(dst, rpt, o.Obj)
    	default:
    		err = report.Generate(dst, rpt, o.Obj)
    	}
    	if err != nil {
    		return err
    	}
    	src := dst
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/KotlinBuildScriptDependenciesResolver.kt

    
    private
    typealias Report = (ReportSeverity, String, Position?) -> Unit
    
    
    private
    fun Report.warning(message: String, position: Position? = null) =
        invoke(ReportSeverity.WARNING, message, position)
    
    
    private
    fun Report.error(message: String, position: Position? = null) =
        invoke(ReportSeverity.ERROR, message, position)
    
    
    private
    fun Report.fatal(message: String, position: Position? = null) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            index.assertHasNoNavLinks()
        }
    
        def "generates report with aggregated index page for build with no failures - #numThreads parallel thread(s)"() {
            given:
            report = reportWithMaxThreads(numThreads)
            def testTestResults = passingBuildResults()
    
            when:
            report.generateReport(testTestResults, reportDir)
    
            then:
            def index = results(indexFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            result.output.assertContains("failed-report-with-leftover/build/tmp/teŝt files/leftover")
            result.output.assertContains("failed-test-with-leftover/build/tmp/teŝt files/leftover")
    
            assertArchivedFilesSeen(
                "report-failed-test-with-leftover-test.zip",
                "report-failed-report-with-leftover-reports.zip",
                "report-failed-test-with-leftover-leftover.zip",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top