Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 779 for Reports (0.12 sec)

  1. 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)
  2. 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)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

                }
            }
        }
    
        def "does not report project configuration progress events when PROJECT_CONFIGURATION operations are not requested"() {
            when:
            runBuild("tasks", EnumSet.complementOf(EnumSet.of(OperationType.PROJECT_CONFIGURATION)))
    
            then:
            !events.operations.any { it.projectConfiguration }
        }
    
        def "reports plugin configuration results for binary plugins"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/unicode/letter.go

    		return is32(r32, uint32(r))
    	}
    	return false
    }
    
    // IsUpper reports whether the rune is an upper case letter.
    func IsUpper(r rune) bool {
    	// See comment in IsGraphic.
    	if uint32(r) <= MaxLatin1 {
    		return properties[uint8(r)]&pLmask == pLu
    	}
    	return isExcludingLatin(Upper, r)
    }
    
    // IsLower reports whether the rune is a lower case letter.
    func IsLower(r rune) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. maven-embedder/src/test/java/org/apache/maven/cli/event/ExecutionEventLoggerTest.java

            when(project.getGroupId()).thenReturn("org.apache.maven.plugins.overflow");
            when(project.getArtifactId()).thenReturn("maven-project-info-reports-plugin");
            when(project.getPackaging()).thenReturn("maven-plugin");
            when(project.getName()).thenReturn("Apache Maven Project Info Reports Plugin");
            when(project.getVersion()).thenReturn("3.0.0-SNAPSHOT");
            when(event.getProject()).thenReturn(project);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/net/ip.go

    )
    
    // IsUnspecified reports whether ip is an unspecified address, either
    // the IPv4 address "0.0.0.0" or the IPv6 address "::".
    func (ip IP) IsUnspecified() bool {
    	return ip.Equal(IPv4zero) || ip.Equal(IPv6unspecified)
    }
    
    // IsLoopback reports whether ip is a loopback address.
    func (ip IP) IsLoopback() bool {
    	if ip4 := ip.To4(); ip4 != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/testing/testing_test.go

    	}
    	if c != want {
    		t.Errorf("got %d race reports; want %d", c, want)
    	}
    }
    
    func TestBenchmarkRace(t *testing.T) {
    	out := runTest(t, "BenchmarkRacy")
    	c := bytes.Count(out, []byte("race detected during execution of test"))
    
    	want := 0
    	// We should see one race detector report.
    	if race.Enabled {
    		want = 1
    	}
    	if c != want {
    		t.Errorf("got %d race reports; want %d", c, want)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ConfigurationBuildDependenciesIntegrationTest.groovy

            then:
            executed ":jar", ":lib", ":child:jar", ":child:lib", ":useCompileConfiguration"
    
            where:
            fluid << [true, false]
        }
    
        def "reports failure to calculate build dependencies when artifact build dependencies cannot be queried - fluid: #fluid"() {
            makeFluid(fluid)
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/internal/runtime/atomic/types.go

    //
    //go:nosplit
    func (i *Int32) Store(value int32) {
    	Storeint32(&i.value, value)
    }
    
    // CompareAndSwap atomically compares i's value with old,
    // and if they're equal, swaps i's value with new.
    // It reports whether the swap ran.
    //
    //go:nosplit
    func (i *Int32) CompareAndSwap(old, new int32) bool {
    	return Casint32(&i.value, old, new)
    }
    
    // Swap replaces i's value with new, returning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modget/query.go

    	// module version to get.
    	version string
    
    	// matchWildcard, if non-nil, reports whether pattern, which must be a
    	// wildcard (with the substring "..."), matches the given package or module
    	// path.
    	matchWildcard func(path string) bool
    
    	// canMatchWildcardInModule, if non-nil, reports whether the module with the given
    	// path could lexically contain a package matching pattern, which must be a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top