Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 2,339 for Tresults (0.23 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.performance.results.report;
    
    import org.gradle.performance.results.CrossVersionResultsStore;
    import org.gradle.performance.results.FileRenderer;
    import org.gradle.performance.results.PerformanceFlakinessDataProvider;
    import org.gradle.performance.results.ResultsStore;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestDataGenerator.java

     */
    
    package org.gradle.performance.results.report;
    
    import com.google.common.collect.ImmutableMap;
    import com.google.common.collect.Lists;
    import groovy.json.JsonGenerator;
    import org.gradle.performance.results.CrossVersionPerformanceTestHistory;
    import org.gradle.performance.results.FormatSupport;
    import org.gradle.performance.results.MeasuredOperationList;
    import org.gradle.performance.results.PerformanceTestExecution;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. docs_src/query_params_str_validations/tutorial002_an.py

    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(q: Annotated[Union[str, None], Query(max_length=50)] = None):
        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: Sat Mar 18 12:29:59 UTC 2023
    - 351 bytes
    - Viewed (0)
  4. docs_src/query_params_str_validations/tutorial004.py

    @app.get("/items/")
    async def read_items(
        q: Union[str, None] = Query(
            default=None, min_length=3, max_length=50, pattern="^fixedquery$"
        ),
    ):
        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
    - 367 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top