Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,722 for Tresults (1.45 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractReportGenerator.java

     */
    
    package org.gradle.performance.results.report;
    
    import org.apache.commons.lang.StringUtils;
    import org.gradle.api.GradleException;
    import org.gradle.performance.results.FileRenderer;
    import org.gradle.performance.results.NoResultsStore;
    import org.gradle.performance.results.PerformanceDatabase;
    import org.gradle.performance.results.PerformanceExperiment;
    import org.gradle.performance.results.PerformanceFlakinessDataProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestResultSerializer.java

        public TestResultSerializer(File resultsDir) {
            this.resultsFile = new File(resultsDir, "results.bin");
        }
    
        public void write(Collection<TestClassResult> results) {
            try {
                OutputStream outputStream = new FileOutputStream(resultsFile);
                try {
                    if (!results.isEmpty()) { // only write if we have results, otherwise truncate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_ops.td

        DenseI32ArrayAttr:$operands_with_static_shape,
        StrAttr:$producer_name
      );
    
      let results = (outs
        TF_Tensor:$rendezvous_key_base,
        Variadic<TF_Tensor>:$results
      );
    
      let assemblyFormat = [{
        `(` $operands_and_static_shapes `)` attr-dict `:` functional-type($operands_and_static_shapes, results)
      }];
    }
    
    def TFIfrtLoadVariableOp: TensorflowMlrt_Op<"tf_ifrt_load_variable", [Pure]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:35:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

          // If the value is used as an operand of the terminator op, adds it to
          // the result list of function that defines this op.
          if (op->hasTrait<OpTrait::IsTerminator>()) {
            if (llvm::find(defining_func_metadata.results, value) ==
                defining_func_metadata.results.end()) {
              defining_func_metadata.results.push_back(value);
              defining_func_metadata.result_devices.push_back(value_device);
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

      CHECK_EQ(func->argument_types().size(), 1);
    
      llvm::SmallVector<RCReference<AsyncValue>, 1> results;
      results.resize(func->result_types().size());
      CHECK_EQ(results.size(), 1);
    
      func->Execute(*exec_ctx_, tfrt::GetReadyChain().GetAsyncValue(), results);
    
      host_context_->Await(results);
    
      CHECK(!results[0]->IsError()) << "Failed to run TFRT initialization function";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. testing/performance/docs/check-rev.sh

    result=$?
    hash=$(git rev-parse HEAD | colrm 9)
    datets=$(date +%Y-%m-%d-%H:%M:%S)
    [ -d ~/.gradle-bisect-results ] || mkdir ~/.gradle-bisect-results
    cp subprojects/performance/build/test-results/performanceTest/TEST-org.gradle.performance.$TESTNAME.xml ~/.gradle-bisect-results/result_${result}_${hash}_${datets}.xml
    git reset --hard
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/PerformanceExecutionDataProvider.java

     */
    
    package org.gradle.performance.results.report;
    
    import com.fasterxml.jackson.core.type.TypeReference;
    import com.fasterxml.jackson.databind.ObjectMapper;
    import org.gradle.performance.results.MeasuredOperationList;
    import org.gradle.performance.results.PerformanceReportScenarioHistoryExecution;
    import org.gradle.performance.results.PerformanceTestExecution;
    import org.gradle.performance.results.PerformanceReportScenario;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

    import org.gradle.internal.time.Clock
    import org.gradle.internal.time.Time
    import org.gradle.performance.results.CrossVersionPerformanceResults
    import org.gradle.performance.results.DataReporter
    import org.gradle.performance.results.MeasuredOperationList
    import org.gradle.performance.results.ResultsStoreHelper
    import org.gradle.performance.util.Git
    import org.gradle.profiler.BuildAction
    import org.gradle.profiler.BuildMutator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. tests/scan_test.go

    		t.Errorf("No error should happen, got %v", err)
    	}
    
    	type Result struct {
    		Name string
    		Age  int
    	}
    
    	var results []Result
    	for rows.Next() {
    		var result Result
    		if err := DB.ScanRows(rows, &result); err != nil {
    			t.Errorf("should get no error, but got %v", err)
    		}
    		results = append(results, result)
    	}
    
    	sort.Slice(results, func(i, j int) bool {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. docs_src/query_params_str_validations/tutorial010_py310.py

            min_length=3,
            max_length=50,
            pattern="^fixedquery$",
            deprecated=True,
        ),
    ):
        results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
        if q:
            results.update({"q": q})
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 24 20:26:06 UTC 2023
    - 542 bytes
    - Viewed (0)
Back to top