Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 489 for REPORT (0.11 sec)

  1. android/guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="http://w3.org/TR/CSP/#content-security-policy-report-only-header-field">
       * {@code Content-Security-Policy-Report-Only}</a> header field name.
       *
       * @since 15.0
       */
      public static final String CONTENT_SECURITY_POLICY_REPORT_ONLY =
          "Content-Security-Policy-Report-Only";
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteModelIntegrationSpec.groovy

                    }
                }
    
                apply type: TestBinaryTypeRules
            """
        }
    
        def "test suite sources and binaries containers are visible in model report"() {
            when:
            run "model"
    
            then:
            ModelReportOutput.from(output).hasNodeStructure {
                testSuites {
                    main {
                        binaries()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

    import java.nio.file.Files;
    import java.nio.file.StandardCopyOption;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.TreeMap;
    
    /**
     * Generates an HTML report for verification. This report, unlike the text report,
     * is cumulative, meaning that it keeps state and will be incrementally feeded with
     * new contents.
     */
    class HtmlDependencyVerificationReportRenderer implements DependencyVerificationReportRenderer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    ----
    
    ----
    > gradle -q dependencies --configuration tRC
    ----
    
    To see a list of all the configurations available in a project, including those added by any plugins, you can run a `resolvableConfigurations` report.
    
    For more info, see that plugin's documentation (for instance, the Java Plugin is documented <<java_plugin.adoc#sec:java_plugin_and_dependency_management,here>>).
    
    === Example
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r27/TestLauncherCrossVersionSpec.groovy

            normaliseLineSeparators(e.cause.causes[0].cause.cause.message).startsWith "There were failing tests. See the report at:"
            normaliseLineSeparators(e.cause.causes[1].cause.message) == "Execution failed for task ':test'."
            normaliseLineSeparators(e.cause.causes[1].cause.cause.message).startsWith "There were failing tests. See the report at:"
    
            when:
            launchTests { TestLauncher testLauncher ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/PmdPlugin.java

            task.getReports().all(action(report -> {
                report.getRequired().convention(true);
                report.getOutputLocation().convention(
                    layout.getProjectDirectory().file(providers.provider(() -> {
                        String reportFileName = baseName + "." + report.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top