Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,496 for Reports (0.42 sec)

  1. src/testing/cover.go

    	CoveredPackages string
    }
    
    // Coverage reports the current code coverage as a fraction in the range [0, 1].
    // If coverage is not enabled, Coverage returns 0.
    //
    // When running a large set of sequential test cases, checking Coverage after each one
    // can be useful for identifying which test cases exercise new code paths.
    // It is not a replacement for the reports generated by 'go test -cover' and
    // 'go tool cover'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. build-logic/uber-plugins/src/main/kotlin/gradlebuild.java-library.gradle.kts

        id("gradlebuild.distribution-testing")
        id("gradlebuild.incubation-report")
        id("gradlebuild.strict-compile")
        id("gradlebuild.code-quality")
        id("gradlebuild.arch-test")
        id("gradlebuild.integration-tests")
        id("gradlebuild.cross-version-tests")
        id("gradlebuild.ci-lifecycle")
        id("gradlebuild.ci-reporting") // CI: Prepare reports to be uploaded to TeamCity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 17:16:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.testing.AbstractTestTask.xml

                </tr>
                <tr>
                    <td>ignoreFailures</td>
                    <td/>
                </tr>
                <tr>
                    <td>reports</td>
                    <td/>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. releasenotes/notes/bug-report-rps-limit.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
      **Added** `--rps-limit` flag to `istioctl bug-report` that allows increasing
      the requests per second limit to the Kubernetes API server which can greatly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 23 16:44:39 UTC 2022
    - 276 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/resources/org/gradle/testing/cucumberjvm/CucumberJVMReportIntegrationTest/testReportingSupportsCucumberStepsWithSlashes/build.gradle

    }
    
    test {
        testLogging.showStandardStreams = true
        testLogging.events 'started', 'passed', 'skipped', 'failed', 'standardOut', 'standardError'
        reports.junitXml.required = true
        reports.html.required = true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl.isolated
    
    
    import spock.lang.Issue
    
    class IsolatedProjectsAccessFromKotlinDslIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
        def "reports problem when build script uses #block block to apply plugins to another project"() {
            createDirs("a", "b")
            settingsFile << """
                include("a")
                include("b")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/cmd/internal/src/xpos.go

    }
    
    // SameFile reports whether p and q are positions in the same file.
    func (p XPos) SameFile(q XPos) bool {
    	return p.index == q.index
    }
    
    // SameFileAndLine reports whether p and q are positions on the same line in the same file.
    func (p XPos) SameFileAndLine(q XPos) bool {
    	return p.index == q.index && p.lico.SameLine(q.lico)
    }
    
    // After reports whether the position p comes after q in the source.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/arch/loong64.go

    	}
    	return false
    }
    
    // IsLoong64CMP reports whether the op (as defined by an loong64.A* constant) is
    // one of the CMP instructions that require special handling.
    func IsLoong64CMP(op obj.As) bool {
    	switch op {
    	case loong64.ACMPEQF, loong64.ACMPEQD, loong64.ACMPGEF, loong64.ACMPGED,
    		loong64.ACMPGTF, loong64.ACMPGTD:
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    ====
    
    The `application` project requires no additional configuration if the `jvm-test-suite` plugin is present.
    
    <1> Apply the `jacoco-report-aggregation` plugin
    <2> Optional: make JaCoCo aggregate report generation part of the 'check' lifecycle phase
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/arch/arm.go

    func jumpArm(word string) bool {
    	return armJump[word]
    }
    
    // IsARMCMP reports whether the op (as defined by an arm.A* constant) is
    // one of the comparison instructions that require special handling.
    func IsARMCMP(op obj.As) bool {
    	switch op {
    	case arm.ACMN, arm.ACMP, arm.ATEQ, arm.ATST:
    		return true
    	}
    	return false
    }
    
    // IsARMSTREX reports whether the op (as defined by an arm.A* constant) is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
Back to top