Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for REPORT (0.12 sec)

  1. .teamcity/test-buckets.json

    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"composite-builds",
    					"declarative-dsl-core",
    					"problems",
    					"plugins-test-report-aggregation",
    					"resources-sftp",
    					"build-cache-http",
    					"testing-base",
    					"model-groovy",
    					"plugins-jvm-test-suite",
    					"plugins-version-catalog",
    					"plugins-jvm-test-fixtures"
    				]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

        }
    
        def "link to report is not shown with --warn if there are no-CC problems"() {
            file("build.gradle") << """
                buildDir = 'out'
                tasks.register('doIt') {
                    // just so we had something for the CC report,
                    System.getenv('JAVA_HOME')
                    doLast {
                        println("Done")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

                self._output_saved_model_path, self._input_saved_model_path
            ),
            0.4,
        )
    
      def test_save_quantization_report_file(self):
        """Tests that the quantization report file is created.
    
        Also test that it is populated with textproto of `QuantizationResults`.
        """
        input_shape = (1, 16)
        filter_shape = (16, 3)
        self._create_matmul_model(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. src/testing/testing.go

    			t.mu.Lock()
    			t.finished = true
    			t.mu.Unlock()
    			err = nil
    		}
    
    		// Use a deferred call to ensure that we report that the test is
    		// complete even if a cleanup function calls t.FailNow. See issue 41355.
    		didPanic := false
    		defer func() {
    			// Only report that the test is complete if it doesn't panic,
    			// as otherwise the test binary can exit before the panic is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/go/types/expr.go

    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    	// attempt at conversion, and if the operand types are
    	// not compatible, we report a type mismatch error.
    	mayConvert := func(x, y *operand) bool {
    		// If both operands are typed, there's no need for an implicit conversion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
        `project-report`
    }
    
    configure<ProjectReportsPluginConvention> {
        projectReportDirName = "custom" // Accessing a convention
    }
    ----
    =====
    
    [.multi-language-sample]
    =====
    .build.gradle
    [source,groovy]
    ----
    plugins {
        id 'project-report'
    }
    
    projectReportDirName = "custom" // Accessing a convention
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    	// attempt at conversion, and if the operand types are
    	// not compatible, we report a type mismatch error.
    	mayConvert := func(x, y *operand) bool {
    		// If both operands are typed, there's no need for an implicit conversion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                for (ReportPlugin report :
                        project.getModel().getDelegate().getReporting().getPlugins()) {
                    Plugin pp = Plugin.newBuilder()
                            .groupId(report.getGroupId())
                            .artifactId(report.getArtifactId())
                            .version(report.getVersion())
                            .build();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    		// doesn't, we'll emit an internal error and hopefully the user will report
    		// it as a bug.
    		for _, m := range ld.requirements.rootModules {
    			if v := mg.Selected(m.Path); v != m.Version {
    				fmt.Fprintln(os.Stderr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    	}
    
    	// V1 has no method m. Should not report wrongType.
    	checkMissingMethod("V1", false)
    
    	// V2 has method m with wrong signature type (ignoring receiver). Should report wrongType.
    	checkMissingMethod("V2", true)
    
    	// V3 has no method m but it exists on *V3. Should report wrongType.
    	checkMissingMethod("V3", true)
    
    	// V4 has no method m but has M. Should not report wrongType.
    	checkMissingMethod("V4", false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top