Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 474 for REPORT (0.22 sec)

  1. pkg/config/analysis/analyzers/telemetry/selector.go

    			label := util.ExtractLabelFromSelectorString(sel.String())
    			if line, ok := util.ErrorLine(rs, fmt.Sprintf(util.TelemetrySelector, label)); ok {
    				m.Line = line
    			}
    
    			c.Report(gvk.Telemetry, m)
    		}
    
    		return true
    	})
    
    	for p, sList := range podsToTelemetries {
    		if len(sList) == 1 {
    			continue
    		}
    
    		sNames := getNames(sList)
    		for _, rs := range sList {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	TypeErrors   []types.Error  // type errors (only if Analyzer.RunDespiteErrors)
    
    	// Report reports a Diagnostic, a finding about a specific location
    	// in the analyzed source code such as a potential mistake.
    	// It may be called by the Run function.
    	Report func(Diagnostic)
    
    	// ResultOf provides the inputs to this analysis pass, which are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/bug/bug.go

    	"cmd/go/internal/web"
    	"cmd/go/internal/work"
    )
    
    var CmdBug = &base.Command{
    	Run:       runBug,
    	UsageLine: "go bug",
    	Short:     "start a bug report",
    	Long: `
    Bug opens the default browser and starts a new bug report.
    The report includes useful system information.
    	`,
    }
    
    func init() {
    	CmdBug.Flag.BoolVar(&cfg.BuildV, "v", false, "")
    	base.AddChdirFlag(&CmdBug.Flag)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/configuration-problems-base/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
        id("gradlebuild.kotlin-dsl-sam-with-receiver")
    }
    
    description = "Base utilities and services to report and track configuration problems"
    
    dependencies {
        api(projects.baseServices)
        api(projects.stdlibJavaExtensions)
        api(projects.logging)
        api(projects.problemsApi)
    
        api(libs.kotlinStdlib)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K 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. platforms/jvm/plugins-test-report-aggregation/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains the Test Report Aggregation plugin"
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":core-api"))
        api(project(":platform-jvm"))
    
        api(libs.inject)
    
        implementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesMultiTargetIntegrationTest.groovy

        }
    
        // currently not supported, variants are ambiguous without further information
        def "reports of multiple targets cannot be aggregated"() {
            setupBasicTestingProject(['test-report-aggregation'])
            buildFile << """
                testing {
                    suites {
                        test {
                            useJUnit()
                            targets {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/problem/WorkerProblemProtocol.java

    import org.gradle.api.problems.internal.Problem;
    import org.gradle.internal.operations.OperationIdentifier;
    
    import javax.annotation.Nullable;
    
    /**
     * Interface used between the worker and the daemon to report problems.
     */
    public interface WorkerProblemProtocol {
        void reportProblem(Problem problem, @Nullable OperationIdentifier id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1012 bytes
    - Viewed (0)
Back to top