Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 739 for Tresults (0.34 sec)

  1. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

        def "can change the destination for test results and reports with #dsl dsl"() {
            given:
            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            def result = fails("test")
    
            then: "the test task is executed"
            result.assertTaskExecuted(":test")
    
            and: "the test results are in the custom directory"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

          auto matched =
              policy->MatchAndUpdateConstraints(op, results, operands.Reset());
          if (succeeded(matched)) {
            updated = true;
            break;
          }
        }
    
        // Signal a failure if could not propagate non-empty constraints on the
        // operation results to the operands.
        if (!updated && !results.Empty()) {
          if (emit_remarks) {
            std::string err_msg;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    			}(a)
    		}
    		wg.Wait()
    	}
    
    	execAll(analyzers)
    
    	// Return diagnostics and errors from root analyzers.
    	results := make([]result, len(analyzers))
    	for i, a := range analyzers {
    		act := actions[a]
    		results[i].a = a
    		results[i].err = act.err
    		results[i].diagnostics = act.diagnostics
    	}
    
    	data := facts.Encode()
    	if err := exportFacts(cfg, data); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

        fun Project.createAdditionalTasks(performanceSourceSet: SourceSet) {
            createPerformanceTestReportTask("performanceTestReport", "org.gradle.performance.results.report.DefaultReportGenerator")
            createPerformanceTestReportTask("performanceTestFlakinessReport", "org.gradle.performance.results.report.FlakinessReportGenerator")
    
            tasks.withType<PerformanceTestReport>().configureEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. src/index/suffixarray/suffixarray_test.go

    	if len(res) != len(exp) {
    		t.Errorf("test %q, lookup %q (n = %d): expected %d results; got %d", tc.name, s, n, len(exp), len(res))
    	}
    
    	// if n >= 0 the number of results is limited --- unless n >= all results,
    	// we may obtain different positions from the Index and from find (because
    	// Index may not find the results in the same order as find) => in general
    	// we cannot simply check that the res and exp lists are equal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    								DriverName: "driver-a",
    								StructuredData: &resourceapi.StructuredResourceHandle{
    									NodeName: "node-b",
    									// Unknown allocations can be ignored.
    									Results: []resourceapi.DriverAllocationResult{{
    										AllocationResultModel: resourceapi.AllocationResultModel{},
    									}},
    								},
    							}},
    						},
    					},
    				},
    				&resourceapi.ResourceClaim{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

    //     propagate from result #a to result #r. Generalizing, the resource ID
    //     propagation (for results which are passthrough) looks like:
    //
    //     for r in (0, num_results) : result[r] = arg[r];
    //     repeat till no change {
    //       a = passthrough arg for result #r;
    //       result[r] += result[a];
    //     }
    //
    void ResourceAliasAnalysisInfo::AnalyzeWhileLoop(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

                            valueOrTransform.apply(
                                value -> results.add(value),
                                transform -> {
                                    final int index = results.size();
                                    results.add(null);
                                    transforms.add(() -> {
                                        results.set(index, unchecked(transform));
                                        return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestFailureIntegrationTest.groovy

            when:
            runAndFail "test"
    
            then:
            failureHasCause "There were failing tests"
    
            and:
            def results = new DefaultTestExecutionResult(file("."))
            results.assertTestClassesExecuted("ExceptionTest")
            results.testClass("ExceptionTest").assertTestFailed("testThrow", equalTo('ExceptionTest$BadlyBehavedException: Broken writeObject()'))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. cmd/metacache-server-pool.go

    	if !truncated {
    		return entries, io.EOF
    	}
    	return entries, nil
    }
    
    // listMerged will list across all sets and return a merged results stream.
    // The result channel is closed when no more results are expected.
    func (z *erasureServerPools) listMerged(ctx context.Context, o listPathOptions, results chan<- metaCacheEntry) error {
    	var mu sync.Mutex
    	var wg sync.WaitGroup
    	var errs []error
    	allAtEOF := true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top