Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 860 for REPORT (0.08 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored()
            outputContains(output1)
    
            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateLoaded()
            outputContains(output1)
    
            when: // a file is added
            dir.createFile("file3")
            configurationCacheRun("report")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractReportTask.java

        /**
         * Sets the file which the report will be written to. Set this to {@code null} to write the report to {@code System.out}.
         *
         * @param outputFile The output file. May be null.
         */
        public void setOutputFile(@Nullable File outputFile) {
            this.outputFile = outputFile;
        }
    
        /**
         * Returns the set of project to generate this report for. By default, the report is generated for the task's
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/DefaultProblemReporter.java

         *
         * @param problem The problem to report.
         */
        @Override
        public void report(Problem problem) {
            RuntimeException exception = problem.getException();
            if(exception != null) {
                problems.put(exception, problem);
            }
            OperationIdentifier id = currentBuildOperationRef.getId();
            if (id != null) {
                report(problem, id);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/bug_report.yml

    name: Bug report
    description: Report a bug to help us improve Istio
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for taking the time to fill out this bug report!
      - type: checkboxes
        id: security-check
        attributes:
          label: Is this the right place to submit this?
          description: |-
            This is used to report product bugs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.h

    namespace mlir::quant::stablehlo {
    
    // A `PassInstrumentation` that saves quantization report to file after
    // `QuantizeCompositeFunctionsPass` is run. It inspects the `ModuleOp` after
    // quantization and analyzes the quantizable units and quantization methods
    // used. The report file will be saved at the `file_path`. The report file
    // contains textproto of `QuantizationResults`. `file_path`'s base directories
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/plugins/ProjectReportsPluginIntegrationSpec.groovy

            """
    
            when:
            succeeds(task)
    
            then:
            !result.getOutput().contains("See the report at:")
    
            where:
            task << ["taskReport", "propertyReport", "dependencyReport"]
        }
    
        def "given no HTML report, does not print link to default HTML dependency report"() {
            given:
            buildFile << """
                htmlDependencyReport {
                    reports.html.required = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/GenerateBuildDashboard.java

            for (Report report : getEnabledInputReports()) {
                if (getReports().contains(report)) {
                    // A report to be generated, ignore
                    continue;
                }
                File outputLocation = report.getOutputLocation().get().getAsFile();
                inputs.add(new ReportState(report.getDisplayName(), outputLocation, outputLocation.exists()));
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:30:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportBase.java

         * included in the report.
         *
         * @param sourceSets one or more source sets to report on
         */
        public void sourceSets(final SourceSet... sourceSets) {
            for (final SourceSet sourceSet : sourceSets) {
                sourceDirectories.from(new Callable<Set<File>>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    uploads reports. There will be only one report, named YYYY-MM-DD.json,
    for a given day.
    
    First phase. Look at the localdir (os.UserConfigdir()/go/telemetry/local)
    and find all .count and .json files. Find the count files that are no
    longer active by looking at their metadata.
    
    Second phase. Group the inactive count files by their expiry date, and
    for each date generate the local report and the upload report. (The upload
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top