Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 502 for REPORT (0.31 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    func greetings(p *profile.Profile, ui plugin.UI) {
    	numLabelUnits := identifyNumLabelUnits(p, ui)
    	ropt, err := reportOptions(p, numLabelUnits, currentConfig())
    	if err == nil {
    		rpt := report.New(p, ropt)
    		ui.Print(strings.Join(report.ProfileLabels(rpt), "\n"))
    		if rpt.Total() == 0 && len(p.SampleType) > 1 {
    			ui.Print(`No samples were found with the default sample value type.`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  2. src/testing/testing_test.go

    // under the race detector and is otherwise benign.
    func doRace() {
    	var x int
    	c1 := make(chan bool)
    	go func() {
    		x = 1 // racy write
    		c1 <- true
    	}()
    	_ = x // racy read
    	<-c1
    }
    
    func TestRaceReports(t *testing.T) {
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		// Generate a race detector report in a sub test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

            TASKS_REPORT_TASK          | true               | false
            TASKS_DETAILED_REPORT_TASK | true               | true
        }
    
        def "renders task with dependencies without group in detailed report running #tasks"() {
            given:
            buildFile << """
                task a
    
                task b {
                    dependsOn a
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/go/types/assignments.go

    func (check *Checker) returnError(at positioner, lhs []*Var, rhs []*operand) {
    	l, r := len(lhs), len(rhs)
    	qualifier := "not enough"
    	if r > l {
    		at = rhs[l] // report at first extra value
    		qualifier = "too many"
    	} else if r > 0 {
    		at = rhs[r-1] // report at last value
    	}
    	err := check.newError(WrongResultCount)
    	err.addf(at, "%s return values", qualifier)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/JsonProjectDependencyRenderer.java

            this.versionComparator = versionComparator;
            this.versionParser = versionParser;
        }
    
        /**
         * Generates the project dependency report structure
         *
         * @param project the project for which the report must be generated
         * @return the generated JSON, as a String
         */
        public String render(ProjectNameAndPath project, Iterable<ConfigurationDetails> configurations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

                    }
                }
            """
    
            when:
            succeeds("jacocoTestCoverageVerification")
    
            then:
            def report = new JacocoReportXmlFixture(file("build/reports/jacoco/test/jacocoTestReport.xml"))
            report.assertHasClassCoverage("test.gradle.MyPlugin")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/assignments.go

    }
    
    func (check *Checker) returnError(at poser, lhs []*Var, rhs []*operand) {
    	l, r := len(lhs), len(rhs)
    	qualifier := "not enough"
    	if r > l {
    		at = rhs[l] // report at first extra value
    		qualifier = "too many"
    	} else if r > 0 {
    		at = rhs[r-1] // report at last value
    	}
    	err := check.newError(WrongResultCount)
    	err.addf(at, "%s return values", qualifier)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    $ gradle projects
    ----
    
    You also get a project report within https://scans.gradle.com/[Build Scans].
    
    [[sec:listing_tasks]]
    === Listing tasks
    Running `gradle tasks` gives you a list of the main tasks of the selected project. This report shows the default tasks for the project, if any, and a description for each task:
    
    ----
    $ gradle tasks
    ----
    
    By default, this report shows only those tasks assigned to a task group.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/stackcheck.go

    		// expensive work to report a good error. First, for
    		// the over-limit functions, redo the stack check but
    		// record the graph this time.
    		sc = newStackCheck(ctxt, true)
    		for _, s := range failed {
    			sc.check(s)
    		}
    
    		// Find the roots of the graph (functions that are not
    		// called by any other function).
    		roots := sc.findRoots()
    
    		// Find and report all paths that go over the limit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy

    import japicmp.model.JApiConstructor
    import japicmp.model.JApiField
    import japicmp.model.JApiMethod
    import japicmp.model.JApiParameter
    import me.champeau.gradle.japicmp.report.AbstractContextAwareViolationRule
    import me.champeau.gradle.japicmp.report.Severity
    import me.champeau.gradle.japicmp.report.ViolationCheckContext
    import org.gradle.api.Incubating
    import spock.lang.Specification
    import spock.lang.TempDir
    
    import javax.inject.Inject
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 16K bytes
    - Viewed (0)
Back to top