Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 703 for Tresults (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. docs_src/query_params_str_validations/tutorial004_py310.py

    @app.get("/items/")
    async def read_items(
        q: 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
    - 335 bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/InMemoryTestResultsProvider.java

            });
        }
    
        @Override
        public void visitClasses(final Action<? super TestClassResult> visitor) {
            for (TestClassResult result : results) {
                visitor.execute(result);
            }
        }
    
        @Override
        public boolean isHasResults() {
            return results.iterator().hasNext();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. docs_src/query_params_str_validations/tutorial007_an_py310.py

    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        q: Annotated[str | None, Query(title="Query string", min_length=3)] = 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: Tue Mar 26 16:56:53 UTC 2024
    - 337 bytes
    - Viewed (0)
  9. docs_src/query_params_str_validations/tutorial003.py

    app = FastAPI()
    
    
    @app.get("/items/")
    async def read_items(
        q: Union[str, None] = Query(default=None, min_length=3, max_length=50),
    ):
        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 Mar 26 16:56:53 UTC 2024
    - 329 bytes
    - Viewed (0)
  10. docs_src/query_params_str_validations/tutorial010.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
    - 574 bytes
    - Viewed (0)
Back to top