Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,164 for NResults (0.25 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

      std::vector<tfrt::RCReference<tfrt::AsyncValue>> results;
      results.resize(func->result_types().size());
    
      for (auto _ : state) {
        func->Execute(exec_ctx, arguments.values(), results);
        host->Await(results);
        results.clear();
        results.resize(func->result_types().size());
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

        }
    
        @CompileStatic
        private static class CurrentVersionResults implements VersionResults {
            final MeasuredOperationList results
    
            CurrentVersionResults(MeasuredOperationList results) {
                this.results = results
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleVsMavenBuildExperimentRunner.java

     * limitations under the License.
     */
    
    package org.gradle.performance.fixture;
    
    import groovy.transform.CompileStatic;
    import org.gradle.performance.results.GradleProfilerReporter;
    import org.gradle.performance.results.MeasuredOperationList;
    import org.gradle.performance.results.OutputDirSelector;
    
    @CompileStatic
    public class GradleVsMavenBuildExperimentRunner extends AbstractBuildExperimentRunner {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tests/callbacks_test.go

    	}
    
    	datas := []struct {
    		callbacks []callback
    		err       string
    		results   []string
    	}{
    		{
    			callbacks: []callback{{h: c1}, {h: c2}, {h: c3}, {h: c4}, {h: c5}},
    			results:   []string{"c1", "c2", "c3", "c4", "c5"},
    		},
    		{
    			callbacks: []callback{{h: c1}, {h: c2}, {h: c3}, {h: c4}, {h: c5, before: "c4"}},
    			results:   []string{"c1", "c2", "c3", "c5", "c4"},
    		},
    		{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 26 03:33:36 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/DefaultTestExecutionResult.groovy

                results << htmlResult
                results << xmlResult
            }else{
                htmlResult = new HtmlTestExecutionResult(projectDir, "$buildDirName/reports/tests/${testTaskName}")
                xmlResult = new JUnitXmlTestExecutionResult(projectDir, "$buildDirName/test-results/${testTaskName}")
    
                results << htmlResult
                results << xmlResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. istioctl/pkg/cli/mock_client.go

    	return c.Results, nil
    }
    
    func (c MockClient) EnvoyDo(ctx context.Context, podName, podNamespace, method, path string) ([]byte, error) {
    	results, ok := c.Results[podName]
    	if !ok {
    		return nil, fmt.Errorf("unable to retrieve Pod: pods %q not found", podName)
    	}
    	return results, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

            then:
            results.size() == 1
            def fooTest = results.values().toList().first()
            fooTest.className == 'FooTest'
            fooTest.startTime == 100
            fooTest.testsCount == 2
            fooTest.failuresCount == 1
            fooTest.duration == 200
            fooTest.results.size() == 2
            fooTest.results.find { it.name == 'testMethod' && it.endTime == 200 && it.duration == 100 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollector.java

        private long internalIdCounter = 1;
    
        public TestReportDataCollector(Map<String, TestClassResult> results, TestOutputStore.Writer outputWriter) {
            this.results = results;
            this.outputWriter = outputWriter;
        }
    
        @Override
        public void beforeSuite(TestDescriptor suite) {
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/report_test.cc

      QuantizationResults results{};
      ASSERT_TRUE(TextFormat::ParseFromString(*file_data, &results));
    
      // Check that `results` reflects the information of the quantized units
      // properly.
      ASSERT_THAT(results.results(), SizeIs(1));
      EXPECT_THAT(results.results(0).quantizable_unit().name(),
                  StrEq("composite_dot_general_fn"));
      EXPECT_TRUE(results.results(0).method().has_static_range_ptq());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/tests/tfcompile_test.cc

        EXPECT_TRUE(gather.Run());
        EXPECT_EQ(gather.error_msg(), "");
        const float results[2] = {2, 4};
        for (int i = 0; i < 2; ++i) {
          EXPECT_EQ(gather.result0(i), results[i]);
          EXPECT_EQ(gather.result0_data()[i], results[i]);
        }
        EXPECT_EQ(gather.result0_data(), gather.results()[0]);
    
        const GatherComp& gather_const = gather;
        EXPECT_EQ(gather_const.error_msg(), "");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
Back to top