Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 167 for reportDir (0.18 sec)

  1. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/PerformanceTestReport.kt

            outputs.doNotCacheIf("Debug enabled") { debugReportGeneration.get() }
        }
    
        @TaskAction
        fun generateReport() {
            val reporter = PerformanceReporter(execOperations, fileOperations)
            reporter.report(
                reportGeneratorClass.get(),
                reportDir.get().asFile,
                performanceResults,
                databaseParameters.get(),
                channel.get(),
                channelPatterns.get(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 15:27:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

        static final String TEST_PATTERN_2 = "pattern2"
        static final String TEST_PATTERN_3 = "pattern3"
    
        private File classesDir
        private File resultsDir
        private File binResultsDir
        private File reportDir
    
        def testExecuterMock = Mock(TestExecuter)
        def testFrameworkMock = Mock(TestFramework)
    
        private FileCollection classpathMock = TestFiles.fixed(new File("classpath"))
        private Test test
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildtree/DeprecationsReporter.java

    import java.io.File;
    
    public class DeprecationsReporter implements ProblemReporter {
        @Override
        public String getId() {
            return "deprecations";
        }
    
        @Override
        public void report(File reportDir, ProblemConsumer validationFailures) {
            Throwable failure = DeprecationLogger.getDeprecationFailure();
            if (failure != null) {
                validationFailures.accept(failure);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                }
    
                else -> null
            }
        }
    
        /**
         * Writes the report to the given [reportDir] if any [diagnostics][DiagnosticKind] have
         * been reported in which case a warning is also logged with the location of the report.
         */
        override fun report(reportDir: File, validationFailures: ProblemConsumer) {
            val summary = summarizer.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts

    }
    
    fun Task.attachedReportLocations() = when (this) {
        is JapicmpTask -> listOf(richReport.get().destinationDir.get().asFile.resolve(richReport.get().reportName.get()))
        is PerformanceTest -> listOf(reportDir.parentFile)
        else -> emptyList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 20 15:24:41 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

        @Internal
        String branchName
    
        @Internal
        abstract Property<String> getCommitId()
    
        @Input
        abstract Property<String> getProjectName()
    
        @OutputDirectory
        File reportDir
    
        @OutputFile
        File resultsJson
    
        @Input
        abstract Property<String> getReportGeneratorClass()
    
        @Internal
        abstract DirectoryProperty getCommitDistributionsDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ToolingApiBuildEventListenerFactory.java

            }
        };
    
        @Override
        public String getId() {
            return "problems";
        }
    
        @Override
        public void report(File reportDir, ProblemConsumer validationFailures) {
            problemAggregator.ifPresent(AggregatingProblemConsumer::sendProblemSummaries);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

            tasks.withType<PerformanceTestReport>().configureEach {
                classpath.from(performanceSourceSet.runtimeClasspath)
                performanceResultsDirectory = repoRoot().dir("perf-results")
                reportDir = project.layout.buildDirectory.dir(******@****.***)
                databaseParameters = project.propertiesForPerformanceDb
                branchName = buildBranch
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  9. pilot/pkg/status/distribution/reporter.go

    	controller             *Controller
    }
    
    var _ xds.DistributionStatusCache = &Reporter{}
    
    const (
    	labelKey  = "internal.istio.io/distribution-report"
    	dataField = "distribution-report"
    )
    
    // Init starts all the read only features of the reporter, used for nonce generation
    // and responding to istioctl wait.
    func (r *Reporter) Init(ledger ledger.Ledger, stop <-chan struct{}) {
    	r.ledger = ledger
    	if r.clock == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. releasenotes/notes/dashboard-reporter-dropdown.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 27595
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 02 19:50:52 UTC 2020
    - 160 bytes
    - Viewed (0)
Back to top