Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,688 for REPORT (0.08 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. pilot/pkg/status/distribution/report.go

    package distribution
    
    import (
    	"gopkg.in/yaml.v2"
    )
    
    type Report struct {
    	Reporter            string         `json:"reporter"`
    	DataPlaneCount      int            `json:"dataPlaneCount"`
    	InProgressResources map[string]int `json:"inProgressResources"`
    }
    
    func ReportFromYaml(content []byte) (Report, error) {
    	out := Report{}
    	err := yaml.Unmarshal(content, &out)
    	return out, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 971 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/resources/org/gradle/reporting/report.js

    Marcin Erdmann <******@****.***> 1416845288 +0000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 24 16:08:08 UTC 2014
    - 5.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. .github/ISSUE_TEMPLATE/bug-report.yaml

    name: Bug Report
    description: Report a bug encountered while operating Kubernetes
    labels: kind/bug
    body:
      - type: textarea
        id: problem
        attributes:
          label: What happened?
          description: |
            Please provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner.
            If this matter is security related, please disclose it privately via https://kubernetes.io/security
        validations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 28 09:34:43 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. releasenotes/notes/bug-report.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 26045
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 209 bytes
    - Viewed (0)
Back to top