Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,278 for REPORT (0.19 sec)

  1. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Report.java

    /**
     * A file based report to be created.
     * <p>
     * Tasks that produce reports expose instances of this type for configuration via the {@link Reporting} interface.
     */
    public interface Report extends Configurable<Report> {
    
        Namer<Report> NAMER = new Namer<Report>() {
            @Override
            public String determineName(Report report) {
                return report.getName();
            }
        };
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.h

      // Returns a human-readable string representation of this report.
      std::string ToString() const;
    
      // Prints a human-readable report to stdout.
      void Print() const;
    
      // Saves the report to `file_path`. The textproto representation of
      // `QuantizationResults` will be written to the file. Returns non-ok status
      // when the file write fails.
      absl::Status Save(StringRef file_path) const;
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

      TextFormat::PrintToString(quantization_results_, &results_str);
    
      return absl::StrCat("===== Quantization Report =====\n\n", results_str,
                          "\n===== Quantization Report End =====\n\n");
    }
    
    void QuantizationReport::Print() const {
      llvm::outs() << ToString();
      llvm::outs().flush();  // Show the report immediately.
    }
    
    absl::Status QuantizationReport::Save(const StringRef file_path) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/report.js

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. releasenotes/notes/bug-report-perf.yaml

    area: istioctl
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 20:26:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. 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)
  10. releasenotes/notes/bug-report-speedup.yaml

    # - documentation
    area: istioctl
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
        **Removed** `--rps-limit` flag for `istioctl bug-report` and **added** `--rq-concurrency` flag.
        The bug reporter will now limit request concurrency instead of limiting request rate to the kube
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top