Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 474 for REPORT (0.14 sec)

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

    // limitations under the License.
    
    package driver
    
    import (
    	"embed"
    	"fmt"
    	"html/template"
    	"os"
    	"sync"
    
    	"github.com/google/pprof/internal/report"
    )
    
    var (
    	htmlTemplates    *template.Template // Lazily loaded templates
    	htmlTemplateInit sync.Once
    )
    
    // getHTMLTemplates returns the set of HTML templates used by pprof,
    // initializing them if necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            }
    
            reportFile.text = reportBuilder.toString()
        }
    
        private void assertAllExceptionsInShowcase(TestFile reportFile) {
            String report = reportFile.text
            demonstrations.each {
                report.contains(it.name)
                report.contains("Caused by: " + it.exception.getName())
            }
        }
    
        private static class Demonstration {
            private final String name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/BUILD

            "@llvm-project//mlir:IR",
            "@llvm-project//mlir:Support",
            "@local_tsl//tsl/platform:status_matchers",
        ],
    )
    
    cc_library(
        name = "report",
        srcs = ["report.cc"],
        hdrs = ["report.h"],
        compatible_with = get_compatible_with_portable(),
        deps = [
            ":io",
            "//tensorflow/compiler/mlir/quantization/common:lift_as_function_call",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/ReportGenerator.java

            return renderer;
        }
    
        protected BuildClientMetaData getClientMetaData() {
            return buildClientMetaData;
        }
    
        /**
         * Returns the file which the report will be written to. When set to {@code null}, the report is written to {@code System.out}.
         *
         * @return The output file. May be null.
         */
        @Nullable
        protected File getOutputFile() {
            return outputFile;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. tests/integration/ambient/gateway_conformance_test.go

    				k.Kube().CoreV1().Namespaces().Update(ctx.Context(), ns, metav1.UpdateOptions{})
    			}
    
    			assert.NoError(t, csuite.Run(t, tests.ConformanceTests))
    			report, err := csuite.Report()
    			assert.NoError(t, err)
    			reportb, err := yaml.Marshal(report)
    			assert.NoError(t, err)
    			fp := filepath.Join(ctx.Settings().BaseDir, "conformance.yaml")
    			t.Logf("writing conformance test to %v (%v)", fp, prow.ArtifactsURL(fp))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

      pm.addInstrumentation(std::make_unique<SaveQuantizationReportInstrumentation>(
          report_file_path));
    
      const LogicalResult run_result = pm.run(*module_op);
      ASSERT_TRUE(succeeded(run_result));
    
      // Check that the report file contains `QuantizationResults` textproto,
      // reflecting the quantization results, in this case the
      // `composite_dot_general_fn` with quantized with `static_range_ptq` method.
      const absl::StatusOr<std::string> file_data =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. Makefile.core.mk

    # This target sets JUNIT_REPORT to the location of the  go-junit-report binary.
    # This binary is provided in the build container. If it is not found, the build
    # container is not being used, so ask the user to install go-junit-report.
    JUNIT_REPORT := $(shell which go-junit-report 2> /dev/null || echo "${ISTIO_BIN}/go-junit-report")
    
    ${ISTIO_BIN}/go-junit-report:
    	@echo "go-junit-report was not found in the build environment."
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

                    // TODO: report mixed positional and named arguments?
                    return@bindFunctionParametersToArguments null
                }
    
                if (arg is FunctionArgument.Named && parameters.none { it.name == arg.name }) {
                    // TODO: report non-matching candidate?
                    return@bindFunctionParametersToArguments null
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_swigcxx.txt

    # go list should not report SWIG-generated C++ files in CompiledGoFiles.
    
    [!exec:swig] skip
    [!exec:g++] skip
    [!cgo] skip
    
    # CompiledGoFiles should contain 4 files:
    #  a.go
    #  _cgo_import.go [gc only]
    #  _cgo_gotypes.go
    #  a.cgo1.go
    #
    # These names we see here, other than a.go, will be from the build cache,
    # so we just count them.
    
    go list -f '{{.CompiledGoFiles}}' -compiled=true example/swig
    
    stdout a\.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 04:04:13 UTC 2024
    - 581 bytes
    - Viewed (0)
  10. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/internal/DefaultProblemTest.groovy

            "locations"   | { it.fileLocation("file") }
            "details"     | { it.details("details") }
        }
    
    
        def "unbound builder result with a change and check report"() {
            given:
            def emitter = Mock(ProblemEmitter)
            def problemReporter = new DefaultProblemReporter(emitter, null, org.gradle.internal.operations.CurrentBuildOperationRef.instance(), HashMultimap.create())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top