Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for reportf (0.24 sec)

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

            then:
            testDirectory.file('out/reports/configuration-cache').isDirectory()
            resolveConfigurationCacheReportDirectory(testDirectory.file('out'), output) == null
        }
    
        def "link to report is shown with --info if there are no-CC problems"() {
            def reportDir = testDirectory.file('out/reports/configuration-cache')
            file("build.gradle") << """
                buildDir = 'out'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/dependency-management-dependency-insight-report-build-scan.png

    dependency-management-dependency-insight-report-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    .Changing the default test report and results directories
    ====
    include::sample[dir="snippets/java/customDirs/kotlin",files="build.gradle.kts[tags=custom-report-dirs]"]
    include::sample[dir="snippets/java/customDirs/groovy",files="build.gradle[tags=custom-report-dirs]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Use the HTML report and this documentation to help you in this journey.
    +
    Start with problems reported when _storing_ the configuration cache.
    Once fixed, you can rely on a valid cached configuration phase and move on to fixing problems reported when _loading_ the configuration cache if any.
    
    Report encountered issues::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    func (check *Checker) matchTypes(x, y *operand) {
    	// mayConvert reports whether the operands x and y may
    	// possibly have matching types after converting one
    	// untyped operand to the type of the other.
    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    func (check *Checker) matchTypes(x, y *operand) {
    	// mayConvert reports whether the operands x and y may
    	// possibly have matching types after converting one
    	// untyped operand to the type of the other.
    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. pkg/kubelet/nodestatus/setters_test.go

    			shouldError:       true,
    		},
    		{
    			name:          "no cloud reported hostnames",
    			nodeAddresses: []v1.NodeAddress{},
    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeHostName, Address: testKubeletHostname}, // detected hostname is auto-added in the absence of cloud-reported hostnames
    			},
    			shouldError: false,
    		},
    		{
    			name: "cloud reports hostname, no override",
    			nodeAddresses: []v1.NodeAddress{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/testing/testing.go

    // as "changed by a cmd/link -X option".
    var testBinary = "0"
    
    // Testing reports whether the current code is being run in a test.
    // This will report true in programs created by "go test",
    // false in programs created by "go build".
    func Testing() bool {
    	return testBinary == "1"
    }
    
    // CoverMode reports what the test coverage mode is set to. The
    // values are "set", "count", or "atomic". The return value will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    	"fixedbugs/issue4510.go",  // types2 reports different (but ok) line numbers
    	"fixedbugs/issue7525b.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525c.go", // types2 reports init cycle error on different line - ok otherwise
    	"fixedbugs/issue7525d.go", // types2 reports init cycle error on different line - ok otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                rootProject.name = "myLib"
            """
        }
    
        def "if no configurations present in project, task reports complete absence"() {
            expect:
            succeeds ':outgoingVariants'
            reportsCompleteAbsenceOfResolvableVariants()
        }
    
        def "if only resolvable configurations present, task reports complete absence"() {
            given:
            buildFile << """
                configurations.create("custom") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top