Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,496 for Reports (0.12 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.api.plugins.quality.Pmd.xml

                </tr>
                <tr>
                    <td>source</td>
                    <td><literal><replaceable>sourceSet</replaceable>.allJava</literal></td>
                </tr>
                <tr>
                    <td>reports</td>
                    <td></td>
                </tr>
                <tr>
                    <td>classpath</td>
                    <td>
                        <literal><replaceable>sourceSet</replaceable>.output</literal> and
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    ==== Disable reports
    
    Gradle automatically creates test reports regardless of whether you want to look at them.
    That report generation slows down the overall build. You may not need reports if:
    
    * you only care if the tests succeeded (rather than why)
    * you use build scans, which provide more information than a local report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/jacoco_plugin.adoc

    By default, a HTML report is generated at `layout.buildDirectory.dir("reports/jacoco/test")`.
    
    NOTE: While tests should be executed before generation of the report, the `jacocoTestReport` task does not depend on the `test` task.
    
    Depending on your usecases, you may want to always generate the `jacocoTestReport` or run the `test` task before generating the report explicitly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskDependencyIntegrationTest.groovy

            implementation "org.test:b1:1.0"
        }
    """
    
            when:
            execute(buildA, ":delegate")
    
            then:
            executed ":buildB:b1:jar", ":buildB:jar"
        }
    
        def "reports failure when included build does not exist for composite"() {
            when:
            buildA.buildFile << """
        task delegate {
            dependsOn gradle.includedBuild('does-not-exist').task(':anything')
        }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/common/common.go

    		if labels[kv.k] != kv.v {
    			return false
    		}
    	}
    	return true
    }
    
    // IsProxyContainer reports whether container is an istio proxy container.
    func IsProxyContainer(_, container string) bool {
    	return container == ProxyContainerName
    }
    
    // IsOperatorContainer reports whether the container is an istio-operator container.
    func IsOperatorContainer(_, container string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. test/typeparam/setsimp.dir/a.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package a
    
    // SliceEqual reports whether two slices are equal: the same length and all
    // elements equal. All floating point NaNs are considered equal.
    func SliceEqual[Elem comparable](s1, s2 []Elem) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	for i, v1 := range s1 {
    		v2 := s2[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 21:39:54 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    dependencies>> of the `testReportAggregation` configuration are selected for potential aggregation.
    
    The user must also declare one or more reports of type `AggregateTestReport`.  Each report instance specifies a `testType` property, used to match the test suite producing the test data.  A `TestReport` task is synthesized for each user-defined report and performs the aggregation.  Invoking this task will cause tests to be executed in the dependent projects of the `testReportAggregation` configuration....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCleanupProgressMonitorTest.groovy

    class DefaultCleanupProgressMonitorTest extends Specification {
    
        def context = Mock(BuildOperationContext) {
        }
    
        @Subject def progressMonitor = new DefaultCleanupProgressMonitor(context)
    
        def "reports deleted and skipped"() {
            when:
            progressMonitor.incrementDeleted()
    
            then:
            1 * context.progress("1 entry deleted")
    
            when:
            progressMonitor.incrementSkipped()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java

        /**
         * Reports plugin issues applicable to the plugin as a whole.
         * <p>
         * This method will record extra information as well, like plugin occurrence or declaration location.
         */
        void reportPluginValidationIssue(
                IssueLocality locality, MavenSession mavenSession, MojoDescriptor mojoDescriptor, String issue);
    
        /**
         * Reports plugin Mojo issues applicable to the Mojo itself.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 26 16:22:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/gover.go

    // Max returns the maximum of x and y interpreted as toolchain versions,
    // compared using Compare.
    // If x and y compare equal, Max returns x.
    func Max(x, y string) string {
    	return gover.Max(x, y)
    }
    
    // IsLang reports whether v denotes the overall Go language version
    // and not a specific release. Starting with the Go 1.21 release, "1.x" denotes
    // the overall language version; the first release is "1.x.0".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top